1 12 13 package com.openedit; 14 15 16 17 24 public class OpenEditRuntimeException extends RuntimeException  25 { 26 27 private static final long serialVersionUID = -2930548912472035638L; 28 29 32 public OpenEditRuntimeException() 33 { 34 super(); 35 } 36 37 42 public OpenEditRuntimeException(String message) 43 { 44 super(message); 45 } 46 47 53 public OpenEditRuntimeException(String message, Throwable t) 54 { 55 super(message, t); 56 } 57 58 63 public OpenEditRuntimeException(Throwable t) 64 { 65 super(t); 66 } 67 } 68 | Popular Tags |