All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coherentlogic.fred.client.webstart.application.StringificationFailedException Maven / Gradle / Ivy

Go to download

This application demonstrates how to use the FRED Client and allows the developer to write custom queries via the FRED Client API.

There is a newer version: 1.0.11-RELEASE
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy