1 56 package org.objectstyle.cayenne.client; 57 58 65 public class CayenneClientException extends RuntimeException { 68 69 public CayenneClientException() { 70 super(); 71 } 72 73 public CayenneClientException(String msg) { 74 super(msg); 75 } 76 77 public CayenneClientException(Throwable th) { 78 super(th); 79 } 80 81 public CayenneClientException(String msg, Throwable th) { 82 super(msg, th); 83 } 84 } | Popular Tags |