KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > utils > NotEqualException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.config.schema.utils;
5
6 /**
7  * Thrown when two {@link XmlObject}s are not equal in
8  * {@link com.tc.config.schema.utils.StandardXmlObjectComparator#checkEquals(XmlObject, XmlObject)}.
9  */

10 public class NotEqualException extends Exception JavaDoc {
11
12   public NotEqualException() {
13     super();
14   }
15
16   public NotEqualException(String JavaDoc message, Throwable JavaDoc cause) {
17     super(message, cause);
18   }
19
20   public NotEqualException(String JavaDoc message) {
21     super(message);
22   }
23
24   public NotEqualException(Throwable JavaDoc cause) {
25     super(cause);
26   }
27
28 }
29
Popular Tags