17 lines
265 B
PHP
Executable File
17 lines
265 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Stefan
|
|
* Date: 12.06.2016
|
|
* Time: 17:45
|
|
*/
|
|
|
|
namespace Workflow;
|
|
|
|
|
|
class NonBreakException extends \Exception
|
|
{
|
|
public function __construct($message) {
|
|
parent::__construct($message, E_NONBREAK_ERROR);
|
|
}
|
|
} |