* The following error codes are used:
* * @link https://php.net/manual/en/class.rarexception.php */ final class RarException extends Exception { /** * Check whether error handling with exceptions is in use * * @link https://php.net/manual/en/rarexception.isusingexceptions.php * * @return bool TRUE if exceptions are being used, FALSE otherwise */ public static function isUsingExceptions() {} /** * Activate and deactivate error handling with exceptions * * @link https://php.net/manual/en/rarexception.setusingexceptions.php * * @param bool $using_exceptions Should be TRUE to activate exception throwing, FALSE to deactivate (the default) */ public static function setUsingExceptions($using_exceptions) {} }