You are here

TextimageException.php in Textimage 8.4

Same filename and directory in other branches
  1. 8.3 src/TextimageException.php

Namespace

Drupal\textimage

File

src/TextimageException.php
View source
<?php

namespace Drupal\textimage;


/**
 * Exception thrown by Textimage on failure.
 */
class TextimageException extends \Exception {

  /**
   * Constructs a TextimageImagerTokenException object.
   */
  public function __construct($message, \Exception $previous = NULL) {
    parent::__construct("Textimage error: {$message}", 0, $previous);
  }

}

Classes

Namesort descending Description
TextimageException Exception thrown by Textimage on failure.