1 24 25 package org.objectweb.cjdbc.controller.loadbalancer; 26 27 import org.objectweb.cjdbc.common.exceptions.CJDBCException; 28 29 35 public class AllBackendsFailedException extends CJDBCException 36 { 37 private static final long serialVersionUID = -7683872079684934331L; 38 39 42 public AllBackendsFailedException() 43 { 44 super(); 45 } 46 47 52 public AllBackendsFailedException(String message) 53 { 54 super(message); 55 } 56 57 62 public AllBackendsFailedException(Throwable cause) 63 { 64 super(cause); 65 } 66 67 73 public AllBackendsFailedException(String message, Throwable cause) 74 { 75 super(message, cause); 76 } 77 78 } 79 | Popular Tags |