Package com.mendix.logging
Class LoggingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.mendix.logging.LoggingException
- All Implemented Interfaces:
 Serializable
This exception is thrown if something goes wrong during logging.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionLoggingException(String message) Creates an exception with the specified message.LoggingException(String message, Throwable cause) Creates an exception with the specified message and cause. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
LoggingException
Creates an exception with the specified message and cause.- Parameters:
 message- the exception messagecause- the underlying cause of this exception
 - 
LoggingException
Creates an exception with the specified message.- Parameters:
 message- the exception message
 
 -