Package com.iplanet.log
Class LogException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.iplanet.log.LogException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionException,DriverLoadException,NullLocationException
@SupportedAll @Deprecated public class LogException extends Exception
Deprecated.The applications may encounter errors when they are denied for a log access because they don't have the access privileges or when they do not have a valid session. The applications may also encounter errors when the logging server is not able response to the applications' request or for some other reasons. This LogException class provides the method for detecting such errors.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intALREADY_EXISTSDeprecated.Log already exists.static intCONNECTION_FALIEDDeprecated.Log JDBC driver connection failed.static intCREATE_ACCESS_DENIEDDeprecated.Log creation privilege is denied.static intDELETE_ACCESS_DENIEDDeprecated.Log deletion privilege is denied.static intDELETE_ERRORDeprecated.Log deletion error.static intFATAL_ERRORDeprecated.Log SQL error / static public final int SQL_ERROR = 523; /** Other unknown fatal error.static intINACTIVEDeprecated.Log is in inactive state, preventing log submission.static intINVALID_LOG_NAMEDeprecated.Log name is in valid.static intINVALID_SESSIONDeprecated.Invalid session.static intLIST_ACCESS_DENIEDDeprecated.Log listing privilege is denied.static intLIST_NOT_EXISTSDeprecated.Log list does not exist.static intLOG_HANDLER_ERRORDeprecated.Log handler error.static intLOG_NOT_FOUNDDeprecated.No such log exists.static intNO_SUCH_SEGMENT_EXISTSDeprecated.No such log segment exists.static intNULL_LOCATIONDeprecated.Log JDBC driver loading failed.static intNULL_POINTERDeprecated.Log JDBC null pointer.static intPROFILE_ERRORDeprecated.Log profile error.static intREAD_ACCESS_DENIEDDeprecated.Log retrieval privilege is denied.static intREAD_ERRORDeprecated.Log Retrieval error.static intREAD_EXCEEDS_MAXDeprecated.Log retrieval size (in bytes) exceeds the maximum allowed.static intTYPE_ERRORDeprecated.Log type error.static intWRITE_ACCESS_DENIEDDeprecated.Log submition privilege is denied.static intWRITE_ERRORDeprecated.Log submission error.
-
Constructor Summary
Constructors Constructor Description LogException()Deprecated.Constructs a log exception.LogException(String msg)Deprecated.Constructs a log exception.LogException(String msg, int type)Deprecated.Constructs a log exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetType()Deprecated.Returns log exception type.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
INVALID_SESSION
public static final int INVALID_SESSION
Deprecated.Invalid session.- See Also:
- Constant Field Values
-
ALREADY_EXISTS
public static final int ALREADY_EXISTS
Deprecated.Log already exists.- See Also:
- Constant Field Values
-
INACTIVE
public static final int INACTIVE
Deprecated.Log is in inactive state, preventing log submission.- See Also:
- Constant Field Values
-
LOG_HANDLER_ERROR
public static final int LOG_HANDLER_ERROR
Deprecated.Log handler error.- See Also:
- Constant Field Values
-
WRITE_ERROR
public static final int WRITE_ERROR
Deprecated.Log submission error.- See Also:
- Constant Field Values
-
READ_ERROR
public static final int READ_ERROR
Deprecated.Log Retrieval error.- See Also:
- Constant Field Values
-
DELETE_ERROR
public static final int DELETE_ERROR
Deprecated.Log deletion error.- See Also:
- Constant Field Values
-
LIST_NOT_EXISTS
public static final int LIST_NOT_EXISTS
Deprecated.Log list does not exist.- See Also:
- Constant Field Values
-
TYPE_ERROR
public static final int TYPE_ERROR
Deprecated.Log type error.- See Also:
- Constant Field Values
-
CREATE_ACCESS_DENIED
public static final int CREATE_ACCESS_DENIED
Deprecated.Log creation privilege is denied.- See Also:
- Constant Field Values
-
WRITE_ACCESS_DENIED
public static final int WRITE_ACCESS_DENIED
Deprecated.Log submition privilege is denied.- See Also:
- Constant Field Values
-
READ_ACCESS_DENIED
public static final int READ_ACCESS_DENIED
Deprecated.Log retrieval privilege is denied.- See Also:
- Constant Field Values
-
LIST_ACCESS_DENIED
public static final int LIST_ACCESS_DENIED
Deprecated.Log listing privilege is denied.- See Also:
- Constant Field Values
-
PROFILE_ERROR
public static final int PROFILE_ERROR
Deprecated.Log profile error.- See Also:
- Constant Field Values
-
LOG_NOT_FOUND
public static final int LOG_NOT_FOUND
Deprecated.No such log exists.- See Also:
- Constant Field Values
-
NO_SUCH_SEGMENT_EXISTS
public static final int NO_SUCH_SEGMENT_EXISTS
Deprecated.No such log segment exists.- See Also:
- Constant Field Values
-
DELETE_ACCESS_DENIED
public static final int DELETE_ACCESS_DENIED
Deprecated.Log deletion privilege is denied.- See Also:
- Constant Field Values
-
INVALID_LOG_NAME
public static final int INVALID_LOG_NAME
Deprecated.Log name is in valid.- See Also:
- Constant Field Values
-
READ_EXCEEDS_MAX
public static final int READ_EXCEEDS_MAX
Deprecated.Log retrieval size (in bytes) exceeds the maximum allowed.- See Also:
- Constant Field Values
-
NULL_LOCATION
public static final int NULL_LOCATION
Deprecated.Log JDBC driver loading failed. static public final int DRIVER_LOAD_FAILED = 519; /** Log JDBC driver null location.- See Also:
- Constant Field Values
-
CONNECTION_FALIED
public static final int CONNECTION_FALIED
Deprecated.Log JDBC driver connection failed.- See Also:
- Constant Field Values
-
NULL_POINTER
public static final int NULL_POINTER
Deprecated.Log JDBC null pointer.- See Also:
- Constant Field Values
-
FATAL_ERROR
public static final int FATAL_ERROR
Deprecated.Log SQL error / static public final int SQL_ERROR = 523; /** Other unknown fatal error.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LogException
public LogException()
Deprecated.Constructs a log exception.
-
LogException
public LogException(String msg)
Deprecated.Constructs a log exception.- Parameters:
msg- Log exception message.
-
LogException
public LogException(String msg, int type)
Deprecated.Constructs a log exception.- Parameters:
msg- Exception message.type- Log exception type.
-
-