com.xmlmill.exception
Class XMLMillNotRecognizedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.xml.sax.SAXException
                    |
                    +--com.xmlmill.exception.XMLMillException
                          |
                          +--com.xmlmill.exception.XMLMillNotRecognizedException
All Implemented Interfaces:
java.io.Serializable

public class XMLMillNotRecognizedException
extends XMLMillException

Encapsulates a XMLMillNotRecognizedException.

A PDXTransform instance will throw this exception when it finds an unrecognized feature or property identifier.

Since:
1.40
See Also:
Serialized Form

Field Summary
static int NOT_RECOG_FEATURE
          Not recognized feature
static int NOT_RECOG_JAXP_VERSION
           
 
Constructor Summary
XMLMillNotRecognizedException(int msgnbr)
          Create a new XMLMillNotRecognizedException .
XMLMillNotRecognizedException(int msgnbr, java.lang.Exception e)
          Create a new XMLMillNotRecognizedException .
XMLMillNotRecognizedException(int msgnbr, java.lang.String s)
          Create a new XMLMillWarning.
XMLMillNotRecognizedException(java.lang.String message)
          Create a new XMLMillNotRecognizedException.
 
Methods inherited from class org.xml.sax.SAXException
getException, getMessage, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

NOT_RECOG_FEATURE

public static final int NOT_RECOG_FEATURE
Not recognized feature

NOT_RECOG_JAXP_VERSION

public static final int NOT_RECOG_JAXP_VERSION
Constructor Detail

XMLMillNotRecognizedException

public XMLMillNotRecognizedException(java.lang.String message)
Create a new XMLMillNotRecognizedException.

Parameters:
message - The message.
Since:
1.35

XMLMillNotRecognizedException

public XMLMillNotRecognizedException(int msgnbr)
Create a new XMLMillNotRecognizedException .
Parameters:
msgnbr - The message number.
Since:
1.35

XMLMillNotRecognizedException

public XMLMillNotRecognizedException(int msgnbr,
                                     java.lang.Exception e)
Create a new XMLMillNotRecognizedException .
Parameters:
message - The message number
e - The Exception to throw.
Since:
1.35

XMLMillNotRecognizedException

public XMLMillNotRecognizedException(int msgnbr,
                                     java.lang.String s)
Create a new XMLMillWarning.
Parameters:
message - The error or warning message.
e - The Exception to throw.
Since:
1.35