1 19 20 package org.apache.cayenne; 21 22 28 public class FaultFailureException extends CayenneRuntimeException { 29 30 33 public FaultFailureException() { 34 super(); 35 } 36 37 42 public FaultFailureException(String msg) { 43 super(msg); 44 } 45 46 50 public FaultFailureException(Throwable th) { 51 super(th); 52 } 53 54 public FaultFailureException(String msg, Throwable th) { 55 super(msg, th); 56 } 57 } 58 | Popular Tags |