You are here

class ExpireException in Node expire 7.2

ExpireException class.

Hierarchy

  • class \Drupal\node_expire\Module\CommonExpire\Exception\ExpireException extends \Drupal\node_expire\Module\CommonExpire\Exception\Exception

Expanded class hierarchy of ExpireException

3 files declare their use of ExpireException
ActionsHandler.php in src/Module/CommonExpire/Actions/ActionsHandler.php
ActionsHandler class.
TimestampHelper.php in src/Module/CommonExpire/Conversion/TimestampHelper.php
TimestampHelper class.
TimestampUtils.php in src/Module/Utils/TimestampUtils.php
TimestampUtils class.

File

src/Module/CommonExpire/Exception/ExpireException.php, line 13
ExpireException class.

Namespace

Drupal\node_expire\Module\CommonExpire\Exception
View source
class ExpireException extends \Exception {

  /**
   * Constructs a ExpireException object.
   */
  public function __construct($message, $code = 0, \Exception $previous = NULL) {

    // Make sure everything is assigned properly.
    parent::__construct($message, $code, $previous);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ExpireException::__construct public function Constructs a ExpireException object.