package kernel.exception; public class CreateCycleException extends Exception { public CreateCycleException() { super(); } public CreateCycleException(String message) { super(message); } public CreateCycleException(Throwable throwable) { super(throwable); } public CreateCycleException(String message, Throwable throwable) { super(message, throwable); } }