org.dhmp.util.xml
Class SchemaException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.dhmp.util.xml.SchemaException
All Implemented Interfaces:
java.io.Serializable

public class SchemaException
extends java.lang.RuntimeException

Thrown when Exception occurs while validating HierarchicalMap against XML Schema.

Author:
hideyuki
See Also:
Serialized Form

Constructor Summary
SchemaException(java.lang.String message)
          Constructs a SchemaException with the specified detail message.
SchemaException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
SchemaException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SchemaException

public SchemaException(java.lang.String message)
Constructs a SchemaException with the specified detail message.

Parameters:
message - the detail message.

SchemaException

public SchemaException(java.lang.Throwable cause)
Constructs a new exception with the specified cause

Parameters:
cause - the cause.

SchemaException

public SchemaException(java.lang.String message,
                       java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.