|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
com.lowagie.text.DocumentException
public class DocumentException
Signals that an error has occurred in a Document.
BadElementException,
Document,
DocWriter,
DocListener,
Serialized Form| Field Summary | |
|---|---|
private Exception |
ex
|
private static long |
serialVersionUID
|
| Constructor Summary | |
|---|---|
DocumentException()
Constructs a DocumentException whithout a message. |
|
DocumentException(Exception ex)
Creates a Document exception. |
|
DocumentException(String message)
Constructs a DocumentException with a message. |
|
| Method Summary | |
|---|---|
String |
getLocalizedMessage()
and make sure we also produce a localized version |
String |
getMessage()
We print the message of the checked exception |
void |
printStackTrace()
we have to override this as well |
void |
printStackTrace(PrintStream s)
here we prefix, with s.print(), not s.println(), the stack trace with "ExceptionConverter:" |
void |
printStackTrace(PrintWriter s)
Again, we prefix the stack trace with "ExceptionConverter:" |
private static String |
split(String s)
Removes everything in a String that comes before a '.' |
String |
toString()
The toString() is changed to be prefixed with ExceptionConverter |
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getStackTrace, initCause, setStackTrace |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
private static final long serialVersionUID
private Exception ex
| Constructor Detail |
|---|
public DocumentException(Exception ex)
ex - an exception that has to be turned into a DocumentExceptionpublic DocumentException()
DocumentException whithout a message.
public DocumentException(String message)
DocumentException with a message.
message - a message describing the exception| Method Detail |
|---|
public String getMessage()
getMessage in class Throwablepublic String getLocalizedMessage()
getLocalizedMessage in class Throwablepublic String toString()
toString in class Throwablepublic void printStackTrace()
printStackTrace in class Throwablepublic void printStackTrace(PrintStream s)
printStackTrace in class Throwables - a printstream objectpublic void printStackTrace(PrintWriter s)
printStackTrace in class Throwables - A PrintWriter objectprivate static String split(String s)
s - the original string
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||