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

com.subgraph.orchid.encoders.EncoderException Maven / Gradle / Ivy

The newest version!
package com.subgraph.orchid.encoders;

public class EncoderException
    extends IllegalStateException
{
	private static final long serialVersionUID = 6589388628939318400L;
	private Throwable cause;

    EncoderException(String msg, Throwable cause)
    {
        super(msg);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy