Package com.jedox.palojlib.interfaces
Interface IPaloException
- All Known Implementing Classes:
PaloException
public interface IPaloException
represent the exception that comes from olap server directly
- Author:
- khaddadin
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()
get error code in OLAP server(e.g.get the long error message as received from OLAP serverget the short error message as received from OLAP serverget the error reason message as received from OLAP server (Optional)
-
Method Details
-
getCode
String getCode()get error code in OLAP server(e.g. 3 for "invalid license")- Returns:
- error code
-
getMessage
String getMessage()get the short error message as received from OLAP server- Returns:
- short error message
-
getDescription
String getDescription()get the long error message as received from OLAP server- Returns:
- long error message
-
getReason
String getReason()get the error reason message as received from OLAP server (Optional)- Returns:
- error reason message if doesn't exist, description is returned.
-