mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
14 lines
272 B
Java
14 lines
272 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;
|
|
} |