Overview

Namespaces

  • Khill
    • Fontawesome
      • Exceptions
  • PHP

Exceptions

  • BadLabelException
  • CollectionIconException
  • IncompleteListException
  • IncompleteStackException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php namespace Khill\Fontawesome\Exceptions;
 2: 
 3: class CollectionIconException extends \Exception
 4: {
 5:     public function __construct($message, $code = 1, Exception $previous = null)
 6:     {
 7:         parent::__construct($message, $code, $previous);
 8:     }
 9: 
10:     public function __toString()
11:     {
12:         return __CLASS__ . ": [ERROR] {$this->message}\n";
13:     }
14: 
15: }
16: 
API documentation generated by ApiGen 2.8.0