1 56 package org.objectstyle.cayenne; 57 58 65 public class FaultFailureException extends CayenneRuntimeException { 66 67 70 public FaultFailureException() { 71 super(); 72 } 73 74 80 public FaultFailureException(String msg) { 81 super(msg); 82 } 83 84 88 public FaultFailureException(Throwable th) { 89 super(th); 90 } 91 92 public FaultFailureException(String msg, Throwable th) { 93 super(msg, th); 94 } 95 } 96 | Popular Tags |