Exceptions summary
cBadFunctionCallException |
Exception thrown if a callback refers to an undefined function or if some
arguments are missing. You should use this CONTENIDO exception instead of the
standard PHP BadFunctionCallException. This exception type is logged to
data/logs/exception.txt. |
cBadMethodCallException |
Exception thrown if a callback refers to an undefined method or if some
arguments are missing. You should use this CONTENIDO exception instead of the
standard PHP BadMethodCallException. This exception type is logged to
data/logs/exception.txt. |
cDomainException |
Exception thrown if a value does not adhere to a defined valid data domain. You
should use this CONTENIDO exception instead of the standard PHP DomainException. This exception type is logged to data/logs/exception.txt. |
cErrorException |
An Error Exception. You should use this CONTENIDO exception instead of the
standard PHP ErrorException. This exception type is logged to
data/logs/exception.txt. |
cException |
cException is the base class for all exceptions. You should use this CONTENIDO
exception instead of the standard PHP Exception. This exception type is
logged to data/logs/exception.txt. If there is a more specific and more
appropriate subclass, use the subclass! |
cFileNotFoundException |
Exception thrown if a file could not be found. This exception type is logged to
data/logs/exception.txt. |
cInvalidArgumentException |
Exception thrown if an argument does not match with the expected value. You
should use this CONTENIDO exception instead of the standard PHP InvalidArgumentException. This exception type is logged to
data/logs/exception.txt. |
cLengthException |
Exception thrown if a length is invalid. You should use this CONTENIDO exception
instead of the standard PHP LengthException. This exception type is
logged to data/logs/exception.txt. |
cLogicException |
Exception that represents error in the program logic. This kind of exceptions
should directly lead to a fix in your code. You should use this CONTENIDO
exception instead of the standard PHP LogicException. This exception
type is logged to data/logs/exception.txt. |
cOutOfBoundsException |
Exception thrown if a value is not a valid key. This represents errors that
cannot be detected at compile time. You should use this CONTENIDO exception
instead of the standard PHP OutOfBoundsException. This exception type is
logged to data/logs/exception.txt. |
cOutOfRangeException |
Exception thrown when an illegal index was requested. This represents errors
that should be detected at compile time. You should use this CONTENIDO exception
instead of the standard PHP OutOfRangeException. This exception type is
logged to data/logs/exception.txt. |
cOverflowException |
Exception thrown when adding an element to a full container. You should use this
CONTENIDO exception instead of the standard PHP OverflowException. This
exception type is logged to data/logs/exception.txt. |
cRangeException |
Exception thrown to indicate range errors during program execution. Normally
this means there was an arithmetic error other than under/overflow. This is the
runtime version of cDomainException . You should use this CONTENIDO
exception instead of the standard PHP RangeException. This exception
type is logged to data/logs/exception.txt. |
cRuntimeException |
Exception thrown if an error which can only be found on runtime occurs. This
kind of exceptions should directly lead to a fix in your code. You should use
this CONTENIDO exception instead of the standard PHP RuntimeException.
This exception type is logged to data/logs/exception.txt. |
cUnderflowException |
Exception thrown when performing an invalid operation on an empty container,
such as removing an element. You should use this CONTENIDO exception instead of
the standard PHP UnderflowException. This exception type is logged to
data/logs/exception.txt. |
cUnexpectedValueException |
Exception thrown if a value does not match with a set of values. Typically this
happens when a function calls another function and expects the return value to
be of a certain type or value not including arithmetic or buffer related errors.
You should use this CONTENIDO exception instead of the standard PHP UnexpectedValueException. This exception type is logged to
data/logs/exception.txt. |