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

com.github.molcikas.photon.converters.ConverterException Maven / Gradle / Ivy

The newest version!
package com.github.molcikas.photon.converters;

/**
 * Represents an exception thrown from a converter.
 */
public class ConverterException extends RuntimeException
{
    public ConverterException(String message) {
        super(message);
    }

    public ConverterException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy