1 package org.columba.api.exception; 19 20 public class BaseRuntimeException extends RuntimeException { 21 22 public BaseRuntimeException() { 23 super(); 24 } 25 26 public BaseRuntimeException(String message) { 27 super(message); 28 } 29 30 public BaseRuntimeException(String message, Throwable cause) { 31 super(message, cause); 32 } 33 34 public BaseRuntimeException(Throwable cause) { 35 super(cause); 36 } 37 38 } 39 | Popular Tags |