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

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

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