01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema.utils;
05:
06: /**
07: * Thrown when two {@link XmlObject}s are not equal in
08: * {@link com.tc.config.schema.utils.StandardXmlObjectComparator#checkEquals(XmlObject, XmlObject)}.
09: */
10: public class NotEqualException extends Exception {
11:
12: public NotEqualException() {
13: super ();
14: }
15:
16: public NotEqualException(String message, Throwable cause) {
17: super (message, cause);
18: }
19:
20: public NotEqualException(String message) {
21: super (message);
22: }
23:
24: public NotEqualException(Throwable cause) {
25: super(cause);
26: }
27:
28: }
|