1 56 57 package org.objectstyle.cayenne.project; 58 59 import org.objectstyle.cayenne.CayenneRuntimeException; 60 61 66 public class ProjectException extends CayenneRuntimeException { 67 70 public ProjectException() { 71 super(); 72 } 73 74 75 79 public ProjectException(String msg) { 80 super(msg); 81 } 82 83 84 88 public ProjectException(Throwable th) { 89 super(th); 90 } 91 92 93 98 public ProjectException(String msg, Throwable th) { 99 super(msg, th); 100 } 101 } 102 103 | Popular Tags |