Created
February 26, 2010 16:17
-
-
Save admiyo/315856 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * RHQ Management Platform | |
| package org.rhq.enterprise.server.configuration; | |
| import java.util.Collections; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| public class ConfigurationValidationException extends Exception { | |
| private static final long serialVersionUID = -6924768743906659205L; | |
| /** | |
| * For Raw config, the key is the path to the raw config file | |
| * For structured, the key is simply "structured" | |
| * In the future, the key will be the same as the value returned from | |
| * org.rhq.core.domain.configuration.Configuration.get(string) | |
| */ | |
| public final Map<String, String> errors; | |
| public ConfigurationValidationException(HashMap<String, String> errors) { | |
| super(); | |
| this.errors = Collections.unmodifiableMap(errors); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment