X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fapi%2FValidationException.java;h=82b73d419e402a31f85a4dfeba7266c26d86b802;hp=f27d12399528c38c144fc17ea0354c243365a1a6;hb=4eb724db3877173d502ba38c6d83bec780b38bb2;hpb=751f9472c379195863d53039016ae7be866d0f43 diff --git a/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ValidationException.java b/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ValidationException.java index f27d123995..82b73d419e 100644 --- a/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ValidationException.java +++ b/opendaylight/config/config-api/src/main/java/org/opendaylight/controller/config/api/ValidationException.java @@ -16,9 +16,11 @@ import java.util.Map.Entry; /** * This exception is not intended to be used while implementing modules, - * itaggregates validation exceptions and sends them back to the user. + * it aggregates validation exceptions and sends them back to the user. + * Use {@link org.opendaylight.controller.config.api.JmxAttributeValidationException} for + * validating modules instead. */ -public class ValidationException extends RuntimeException { +public class ValidationException extends Exception { private static final long serialVersionUID = -6072893219820274247L; private final Map> failedValidations; @@ -118,23 +120,30 @@ public class ValidationException extends RuntimeException { @Override public boolean equals(Object obj) { - if (this == obj) + if (this == obj) { return true; - if (obj == null) + } + if (obj == null) { return false; - if (getClass() != obj.getClass()) + } + if (getClass() != obj.getClass()) { return false; + } ExceptionMessageWithStackTrace other = (ExceptionMessageWithStackTrace) obj; if (message == null) { - if (other.message != null) + if (other.message != null) { return false; - } else if (!message.equals(other.message)) + } + } else if (!message.equals(other.message)) { return false; + } if (stackTrace == null) { - if (other.stackTrace != null) + if (other.stackTrace != null) { return false; - } else if (!stackTrace.equals(other.stackTrace)) + } + } else if (!stackTrace.equals(other.stackTrace)) { return false; + } return true; }