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

io.github.orange.line.LineException Maven / Gradle / Ivy

The newest version!
package io.github.orange.line;

/**
 * @author orange
 */
public class LineException extends RuntimeException
{
    public LineException()
    {
        super();
    }

    public LineException(String message)
    {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy