1 package org.apache.ojb.otm.core; 2 3 17 public class ConnectionException extends OTMGenericException 18 { 19 20 23 public ConnectionException() 24 { 25 super(); 26 } 27 28 32 public ConnectionException(String msg) 33 { 34 super(msg); 35 } 36 37 41 public ConnectionException(Throwable cause) 42 { 43 super(cause); 44 } 45 46 51 public ConnectionException(String msg, Throwable cause) 52 { 53 super(msg, cause); 54 } 55 56 } 57 | Popular Tags |