mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
16 lines
258 B
Java
16 lines
258 B
Java
package com.volmit.iris.util;
|
|
|
|
/**
|
|
* Represents a cuboid exception
|
|
*
|
|
* @author cyberpwn
|
|
*/
|
|
public class CuboidException extends Exception
|
|
{
|
|
public CuboidException(String string)
|
|
{
|
|
super(string);
|
|
}
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
} |