1 package org.apache.ojb.broker.util.configuration; 2 3 17 18 import org.apache.ojb.broker.PersistenceBrokerException; 19 20 27 public class ConfigurationException extends PersistenceBrokerException 28 { 29 32 protected ConfigurationException(String key, String message) 33 { 34 super("Configuration problem on key: " + key + "\nReason is: " + message); 35 } 36 37 40 public ConfigurationException(String message) 41 { 42 super("Configuration problem: " + message); 43 } 44 45 48 public ConfigurationException(String message, Throwable exc) 49 { 50 super("Configuration problem: " + message + " because of: " + exc); 51 } 52 53 } 54 | Popular Tags |