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