pub struct PhpException { /* private fields */ }
Expand description
Represents a PHP exception which can be thrown using the throw()
function.
Primarily used to return from a Result<T, PhpException>
which can
immediately be thrown by the ext-php-rs
macro API.
There are default From
implementations for any type that implements
ToString
, so these can also be returned from these functions. You can
also implement From<T>
for your custom error type.
Implementations§
Source§impl PhpException
impl PhpException
Sourcepub fn new(message: String, code: i32, ex: &'static ClassEntry) -> Self
pub fn new(message: String, code: i32, ex: &'static ClassEntry) -> Self
Creates a new exception instance.
§Parameters
message
- Message to contain in the exception.code
- Integer code to go inside the exception.ex
- Exception type to throw.
Sourcepub fn default(message: String) -> Self
pub fn default(message: String) -> Self
Creates a new default exception instance, using the default PHP
Exception
type as the exception type, with an integer code of
zero.
§Parameters
message
- Message to contain in the exception.
Sourcepub fn from_class<T: RegisteredClass>(message: String) -> Self
pub fn from_class<T: RegisteredClass>(message: String) -> Self
Creates an instance of an exception from a PHP class type and a message.
§Parameters
message
- Message to contain in the exception.
Sourcepub fn set_object(&mut self, object: Option<Zval>)
pub fn set_object(&mut self, object: Option<Zval>)
Set the Zval object for the exception.
Exceptions can be based of instantiated Zval objects when you are throwing a custom exception with stateful properties.
§Parameters
object
- The Zval object.