1 24 25 package org.objectweb.cjdbc.common.exceptions; 26 27 28 37 public class UnreachableBackendException extends CJDBCException 38 { 39 private static final long serialVersionUID = -8905280617512397586L; 40 41 44 public UnreachableBackendException() 45 { 46 } 47 48 53 public UnreachableBackendException(String message) 54 { 55 super(message); 56 } 57 58 63 public UnreachableBackendException(Throwable cause) 64 { 65 super(cause); 66 } 67 68 74 public UnreachableBackendException(String message, Throwable cause) 75 { 76 super(message, cause); 77 } 78 79 } 80 | Popular Tags |