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

com.coherentlogic.coherent.data.adapter.application.StringificationFailedException Maven / Gradle / Ivy

The newest version!
package com.coherentlogic.coherent.data.adapter.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 - 2025 Weber Informatics LLC | Privacy Policy