edu.cmu.aura.service
Class FunctionNotSupportedException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--edu.cmu.aura.service.ServiceException
|
+--edu.cmu.aura.service.FunctionNotSupportedException
- All Implemented Interfaces:
- java.io.Serializable
- public class FunctionNotSupportedException
- extends ServiceException
Represents an AuraService FunctionNotSupportedError. Thrown when a
service receives a request from a client for a function that the
service does not support.
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
FUNCTION_NOT_SUPPORTED_ERROR
public static final int FUNCTION_NOT_SUPPORTED_ERROR
- See Also:
- Constant Field Values
POST_COND_TRIGGER_NOT_SUPPORTED
public static final int POST_COND_TRIGGER_NOT_SUPPORTED
- See Also:
- Constant Field Values
POST_MOD_TRIGGER_NOT_SUPPORTED
public static final int POST_MOD_TRIGGER_NOT_SUPPORTED
- See Also:
- Constant Field Values
POST_QUERY_NOT_SUPPORTED
public static final int POST_QUERY_NOT_SUPPORTED
- See Also:
- Constant Field Values
FunctionNotSupportedException
public FunctionNotSupportedException(int errorCode)
- Creates a new FunctionNotSupportedException.
- Parameters:
errorCode - error code of this exception
FunctionNotSupportedException
public FunctionNotSupportedException(int errorCode,
java.lang.String msg)
- Creates a new InternalServiceException.
- Parameters:
errorCode - error code of this exception.msg - message indicating the cause of the problem
FunctionNotSupportedException
public FunctionNotSupportedException(int errorCode,
java.lang.Exception subException)
- Creates a new InternalServiceException.
- Parameters:
errorCode - error code of this exceptionsubException - original exception that caused the problem.