1 24 25 package org.objectweb.cjdbc.controller.loadbalancer.policies.errorchecking; 26 27 import org.objectweb.cjdbc.common.exceptions.CJDBCException; 28 29 38 public class ErrorCheckingException extends CJDBCException 39 { 40 private static final long serialVersionUID = 5652126744711607138L; 41 42 45 public ErrorCheckingException() 46 { 47 super(); 48 } 49 50 55 public ErrorCheckingException(String message) 56 { 57 super(message); 58 } 59 60 65 public ErrorCheckingException(Throwable cause) 66 { 67 super(cause); 68 } 69 70 76 public ErrorCheckingException(String message, Throwable cause) 77 { 78 super(message, cause); 79 } 80 } | Popular Tags |