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 SummaryConstructorsConstructorDescriptionDisplayableError(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 SummaryModifier and TypeMethodDescriptionReturns the provided message, or the message of the exception if a friendly one hasn't been provided.getTitle()
- 
Constructor Details- 
DisplayableErrorCreates an error based solely on a text message and title.
- 
DisplayableErrorCreates an error with a message, title, and backing exception. If message is null, the message of the exception will be used.
 
- 
- 
Method Details- 
getException
- 
getMessageReturns the provided message, or the message of the exception if a friendly one hasn't been provided.
- 
getTitle
 
-