Class DisplayableError
java.lang.Object
com.inductiveautomation.ignition.client.util.gui.errors.DisplayableError
A class representing an error or exception that occurred. It has several different possible pieces of display
 information, such as a title and message in addition to an actual exception.
- 
Constructor Summary
ConstructorsConstructorDescriptionDisplayableError(String message, String title) Creates an error based solely on a text message and title.DisplayableError(String message, String title, Throwable exception) Creates an error with a message, title, and backing exception. - 
Method Summary
Modifier and TypeMethodDescriptionReturns the provided message, or the message of the exception if a friendly one hasn't been provided.getTitle() 
- 
Constructor Details
- 
DisplayableError
Creates an error based solely on a text message and title. - 
DisplayableError
Creates an error with a message, title, and backing exception. If message is null, the message of the exception will be used. 
 - 
 - 
Method Details
- 
getException
 - 
getMessage
Returns the provided message, or the message of the exception if a friendly one hasn't been provided. - 
getTitle
 
 -