merge of localization branch into HEAD. mh and zap
[mir.git] / source / mir / config / ConfigNode.java
index 868bccb..a70aae0 100755 (executable)
@@ -8,12 +8,12 @@ public interface ConfigNode {
   public String getLocationDescription();\r
 \r
   public ConfigNode getSubNode(String aSubNodeName);\r
-  public Boolean getRequiredBooleanProperty(String aPropertyName) throws ConfigException;\r
-  public Integer getRequiredIntegerProperty(String aPropertyName) throws ConfigException;\r
-  public String getRequiredStringProperty(String aPropertyName) throws ConfigException;\r
-  public Double getRequiredDoubleProperty(String aPropertyName) throws ConfigException;\r
-  public Boolean getOptionalBooleanProperty(String aPropertyName, Boolean aDefaultValue) throws ConfigException;\r
-  public Integer getOptionalIntegerProperty(String aPropertyName, Integer aDefaultValue) throws ConfigException;\r
-  public String getOptionalStringProperty(String aPropertyName, String aDefaultValue) throws ConfigException;\r
-  public Double getOptionalDoubleProperty(String aPropertyName, Double aDefaultValue) throws ConfigException;\r
+  public Boolean getRequiredBooleanProperty(String aPropertyName) throws ConfigFailure;\r
+  public Integer getRequiredIntegerProperty(String aPropertyName) throws ConfigFailure;\r
+  public String getRequiredStringProperty(String aPropertyName) throws ConfigFailure;\r
+  public Double getRequiredDoubleProperty(String aPropertyName) throws ConfigFailure;\r
+  public Boolean getOptionalBooleanProperty(String aPropertyName, Boolean aDefaultValue) throws ConfigFailure;\r
+  public Integer getOptionalIntegerProperty(String aPropertyName, Integer aDefaultValue) throws ConfigFailure;\r
+  public String getOptionalStringProperty(String aPropertyName, String aDefaultValue) throws ConfigFailure;\r
+  public Double getOptionalDoubleProperty(String aPropertyName, Double aDefaultValue) throws ConfigFailure;\r
 }\r