1 56 57 package org.objectstyle.cayenne; 58 59 65 public class ConfigurationException extends CayenneRuntimeException { 66 67 70 public ConfigurationException() { } 71 72 73 77 public ConfigurationException(String msg) { 78 super(msg); 79 } 80 81 85 public ConfigurationException(Throwable th) { 86 super(th); 87 } 88 89 public ConfigurationException(String msg, Throwable th) { 90 super(msg, th); 91 } 92 } 93 94 95 | Popular Tags |