1 23 24 package org.continuent.sequoia.common.exceptions; 25 26 34 public class UnreachableBackendException extends SequoiaException 35 { 36 private static final long serialVersionUID = -8905280617512397586L; 37 38 41 public UnreachableBackendException() 42 { 43 } 44 45 50 public UnreachableBackendException(String message) 51 { 52 super(message); 53 } 54 55 60 public UnreachableBackendException(Throwable cause) 61 { 62 super(cause); 63 } 64 65 71 public UnreachableBackendException(String message, Throwable cause) 72 { 73 super(message, cause); 74 } 75 76 } 77 | Popular Tags |