org.dasein.cloud
Class OperationNotSupportedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.dasein.cloud.InternalException
              extended by org.dasein.cloud.OperationNotSupportedException
All Implemented Interfaces:
Serializable

public class OperationNotSupportedException
extends InternalException

Thrown by a cloud service implementation in which a given operation is not supported though the general service has some level of support. If none of the operations are supported, however, then there should be no service implementation for that service.

Author:
George Reese @ enStratus (http://www.enstratus.com)
See Also:
Serialized Form

Constructor Summary
OperationNotSupportedException()
          Constructs an empty exception.
OperationNotSupportedException(String msg)
          Constructs an exception with the specified explanation as to why the operation is not supported.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OperationNotSupportedException

public OperationNotSupportedException()
Constructs an empty exception.


OperationNotSupportedException

public OperationNotSupportedException(String msg)
Constructs an exception with the specified explanation as to why the operation is not supported.

Parameters:
msg - the explanation as to why the operation is not supported.