| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?php
- /**
- * @file
- * TeamSpeak 3 PHP Framework
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @package TeamSpeak3
- * @author Sven 'ScP' Paulsen
- * @copyright Copyright (c) Planet TeamSpeak. All rights reserved.
- */
- /**
- * @class TeamSpeak3_Exception
- * @brief Enhanced exception class for TeamSpeak3 objects.
- */
- class TeamSpeak3_Exception extends Exception
- {
- /**
- * Stores the original error code.
- *
- * @var integer
- */
- protected $raw_code = 0x00;
- /**
- * Stores the original error message.
- *
- * @var string
- */
- protected $raw_mesg = null;
- /**
- * Stores custom error messages.
- *
- * @var array
- */
- protected static $messages = array();
- /**
- * The TeamSpeak3_Exception constructor.
- *
- * @param string $mesg
- * @param integer $code
- * @return TeamSpeak3_Exception
- */
- public function __construct($mesg, $code = 0x00)
- {
- parent::__construct($mesg, $code);
- $this->raw_code = $code;
- $this->raw_mesg = $mesg;
- if(array_key_exists((int) $code, self::$messages))
- {
- $this->message = $this->prepareCustomMessage(self::$messages[intval($code)]);
- }
- TeamSpeak3_Helper_Signal::getInstance()->emit("errorException", $this);
- }
- /**
- * Prepares a custom error message by replacing pre-defined signs with given values.
- *
- * @param TeamSpeak3_Helper_String $mesg
- * @return TeamSpeak3_Helper_String
- */
- protected function prepareCustomMessage(TeamSpeak3_Helper_String $mesg)
- {
- $args = array(
- "code" => $this->getCode(),
- "mesg" => $this->getMessage(),
- "line" => $this->getLine(),
- "file" => $this->getFile(),
- );
- return $mesg->arg($args)->toString();
- }
- /**
- * Registers a custom error message to $code.
- *
- * @param integer $code
- * @param string $mesg
- * @throws TeamSpeak3_Exception
- * @return void
- */
- public static function registerCustomMessage($code, $mesg)
- {
- if(array_key_exists((int) $code, self::$messages))
- {
- throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " is already registered");
- }
- if(!is_string($mesg))
- {
- throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " must be a string");
- }
- self::$messages[(int) $code] = new TeamSpeak3_Helper_String($mesg);
- }
- /**
- * Unregisters a custom error message from $code.
- *
- * @param integer $code
- * @throws TeamSpeak3_Exception
- * @return void
- */
- public static function unregisterCustomMessage($code)
- {
- if(!array_key_exists((int) $code, self::$messages))
- {
- throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " is not registered");
- }
- unset(self::$messages[(int) $code]);
- }
- /**
- * Returns the original error code.
- *
- * @return integer
- */
- public function getRawCode()
- {
- return $this->raw_code;
- }
- /**
- * Returns the original error message.
- *
- * @return integer
- */
- public function getRawMessage()
- {
- return $this->raw_mesg;
- }
- /**
- * Returns the class from which the exception was thrown.
- *
- * @return string
- */
- public function getSender()
- {
- $trace = $this->getTrace();
- return (isset($trace[0]["class"])) ? $trace[0]["class"] : "{main}";
- }
- }
|