Class BadElementException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.gitlab.pdftk_java.com.lowagie.text.DocumentException
-
- com.gitlab.pdftk_java.com.lowagie.text.BadElementException
-
- All Implemented Interfaces:
java.io.Serializable
public class BadElementException extends DocumentException
Signals an attempt to create anElement
that hasn't got the right form.- See Also:
DocumentException
,Cell
,Table
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
A serial version UID
-
Constructor Summary
Constructors Constructor Description BadElementException()
Constructs aBadElementException
whithout a message.BadElementException(java.lang.Exception ex)
Constructs a BadElementExceptionBadElementException(java.lang.String message)
Constructs aBadElementException
with a message.
-
Method Summary
-
Methods inherited from class com.gitlab.pdftk_java.com.lowagie.text.DocumentException
getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
A serial version UID- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BadElementException
public BadElementException(java.lang.Exception ex)
Constructs a BadElementException- Parameters:
ex
- an Exception object that has to be turned into a BadElementException
-
BadElementException
BadElementException()
Constructs aBadElementException
whithout a message.
-
BadElementException
public BadElementException(java.lang.String message)
Constructs aBadElementException
with a message.- Parameters:
message
- a message describing the exception
-
-