1: <?php namespace Knot\Exceptions;
2:
3: use Exception;
4:
5: class FunctionExecuteException extends Exception {
6:
7: public function __toString()
8: {
9: return __CLASS__ . ":[" . $this->code . "]: Function execute error. Function: " . $this->message . '\n';
10: }
11: }