galaxy.lang
Class ErrorMessage

java.lang.Object
  |
  +--galaxy.lang.GalaxyMessage
        |
        +--galaxy.lang.ErrorMessage

public class ErrorMessage
extends GalaxyMessage

This object creates a Clause frame with the special name system_error. It sets :errno with an int and the :err_description with the String.

See Also:
GalaxyMessage, Clause

Field Summary
static int GAL_APPLICATION_ERROR
           
static int GAL_CONN_REJECTION_ERROR
           
static int GAL_NO_FRAME_ERROR
           
static int GAL_NO_OPNAME_ERROR
           
static int GAL_RECEPTION_ERROR
           
static int GAL_SERVER_DOWN_ERROR
           
static int GAL_TRANSMISSION_ERROR
           
 
Fields inherited from class galaxy.lang.GalaxyMessage
data, GAL_BROKER_END_MSG_TYPE, GAL_BROKER_START_MSG_TYPE, GAL_DESTROY_MSG_TYPE, GAL_DISCONNECT_MSG_TYPE, GAL_ERROR_MSG_TYPE, GAL_MESSAGE_MSG_TYPE, GAL_OBJECT_MSG_TYPE, GAL_POSTPONE_MSG_TYPE, GAL_REPLY_MSG_TYPE, msgType, typeToName
 
Constructor Summary
ErrorMessage(java.lang.Object data)
           
ErrorMessage(java.lang.String description)
           
ErrorMessage(java.lang.String description, int errno)
           
 
Methods inherited from class galaxy.lang.GalaxyMessage
createMessage, getData, getType, getTypeName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

GAL_APPLICATION_ERROR

public static final int GAL_APPLICATION_ERROR

GAL_NO_OPNAME_ERROR

public static final int GAL_NO_OPNAME_ERROR

GAL_TRANSMISSION_ERROR

public static final int GAL_TRANSMISSION_ERROR

GAL_RECEPTION_ERROR

public static final int GAL_RECEPTION_ERROR

GAL_SERVER_DOWN_ERROR

public static final int GAL_SERVER_DOWN_ERROR

GAL_NO_FRAME_ERROR

public static final int GAL_NO_FRAME_ERROR

GAL_CONN_REJECTION_ERROR

public static final int GAL_CONN_REJECTION_ERROR
Constructor Detail

ErrorMessage

public ErrorMessage(java.lang.String description,
                    int errno)

ErrorMessage

public ErrorMessage(java.lang.String description)

ErrorMessage

public ErrorMessage(java.lang.Object data)