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

Field Summary
static int FUNCTION_NOT_SUPPORTED_ERROR
           
static int POST_COND_TRIGGER_NOT_SUPPORTED
           
static int POST_MOD_TRIGGER_NOT_SUPPORTED
           
static int POST_QUERY_NOT_SUPPORTED
           
 
Constructor Summary
FunctionNotSupportedException(int errorCode)
          Creates a new FunctionNotSupportedException.
FunctionNotSupportedException(int errorCode, java.lang.Exception subException)
          Creates a new InternalServiceException.
FunctionNotSupportedException(int errorCode, java.lang.String msg)
          Creates a new InternalServiceException.
 
Methods inherited from class edu.cmu.aura.service.ServiceException
getErrorCode, printStackTrace
 
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
 

Field Detail

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
Constructor Detail

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 exception
subException - original exception that caused the problem.