com.coherentlogic.fred.client.webstart.application.StringificationFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fred-client-webstart-application Show documentation
Show all versions of fred-client-webstart-application Show documentation
This application demonstrates how to use the FRED Client and
allows the developer to write custom queries via the FRED Client API.
package com.coherentlogic.fred.client.webstart.application;
/**
* An exception that is thrown when an object cannot be converted into a String.
*
* @author Support
*/
public class StringificationFailedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public StringificationFailedException(String message, Throwable cause) {
super(message, cause);
}
public StringificationFailedException(String message) {
super(message);
}
public StringificationFailedException(Throwable cause) {
super(cause);
}
}