io.github.orange.line.LineException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orange-line Show documentation
Show all versions of orange-line Show documentation
The object is (inversely) sequenced into a single line of string
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