class TextimageException in Textimage 8.3
Same name and namespace in other branches
- 8.4 src/TextimageException.php \Drupal\textimage\TextimageException
Exception thrown by Textimage on failure.
Hierarchy
- class \Drupal\textimage\TextimageException extends \Drupal\textimage\Exception
Expanded class hierarchy of TextimageException
2 files declare their use of TextimageException
- TextimageApiTest.php in tests/
src/ Kernel/ TextimageApiTest.php - TextimageDownloadController.php in src/
Controller/ TextimageDownloadController.php
File
- src/
TextimageException.php, line 8
Namespace
Drupal\textimageView source
class TextimageException extends \Exception {
/**
* Constructs a TextimageImagerTokenException object.
*/
public function __construct($message, \Exception $previous = NULL) {
parent::__construct("Textimage error: {$message}", 0, $previous);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TextimageException:: |
public | function | Constructs a TextimageImagerTokenException object. |