public function TextimageImagerTokenException::__construct in Textimage 7.3
Constructs a TextimageImagerTokenException object.
File
- classes/
TextimageImager.inc, line 533 - Textimage - Image processor class.
Class
- TextimageImagerTokenException
- Exception thrown by TextimageImager on token processing failure.
Code
public function __construct($token) {
parent::__construct(t("Textimage token @token could not be resolved.", array(
'@token' => $token,
)), 0);
$this->token = $token;
}