EveException (String, String, String, Exception)

 

format

EveException(String fromClass,String fromMethod,String message,Exception e)

description

This style of exception is the most comprehensive. It allows you to wrap a Java exception within an EveException and add your own message text, such as the calling method. It also contains a stack trace in ExceptionName.stackTrace.

parameters

fromClass - the class of the method throwing the EveException

 

fromMethod - the method throwing the EveException

 

message - a message explaining the exception

 

e - the actual Java exception that fromMethod caught

returns

nothing

throws

The EveException() method does not explicitly throw any exceptions.