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