public class CellCircularReferenceException extends PptxEditException
The exception that is thrown when one or more circular references are detected where a formula refers to its own cell either directly or indirectly.
Constructor and Description |
---|
CellCircularReferenceException()
Initializes a new instance of the
CellCircularReferenceException class. |
CellCircularReferenceException(java.lang.String message)
Initializes a new instance of the
CellCircularReferenceException class with a specified error message. |
CellCircularReferenceException(java.lang.String message,
java.lang.RuntimeException innerException)
Initializes a new instance of the
CellCircularReferenceException class with a specified error message
and a reference to the inner exception that is the cause of this exception. |
CellCircularReferenceException(java.lang.String message,
java.lang.String reference)
Initializes a new instance of the
CellCircularReferenceException class with a specified error message
and circular cell reference. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getReference()
Gets a circular cell reference.
|
public CellCircularReferenceException()
Initializes a new instance of the CellCircularReferenceException
class.
public CellCircularReferenceException(java.lang.String message)
Initializes a new instance of the CellCircularReferenceException
class with a specified error message.
message
- A string that describes the error.public CellCircularReferenceException(java.lang.String message, java.lang.RuntimeException innerException)
Initializes a new instance of the CellCircularReferenceException
class with a specified error message
and a reference to the inner exception that is the cause of this exception.
message
- A string that describes the error.innerException
- The exception that is the cause of the current exception.public CellCircularReferenceException(java.lang.String message, java.lang.String reference)
Initializes a new instance of the CellCircularReferenceException
class with a specified error message
and circular cell reference.
message
- A string that describes the error.reference
- A circular cell reference.