c983c1716fe1100eee8f3ec5c1b18d9fdd3e6bc4
[mailer.git] / inc / classes / exceptions / container / class_ContainerItemIsNoArrayException.php
1 <?php
2
3 // An exception class for lost classes... ;-)
4 class ContainerItemIsNoArrayException extends FrameworkException {
5         /**
6          * The constructor
7          *
8          * @param               $message                Message from the exception
9          * @param               $code           Code number for the exception
10          * @return      void
11          */
12         public final function __construct ($class, $code) {
13                 // Add a message around the missing class
14                 $message = sprintf("[%s:%d] Ein Container-Item ist kein Array.",
15                         $class->__toString(),
16                         $this->getLine()
17                 );
18
19                 // Call parent constructor
20                 parent::__construct($message, $code);
21         }
22 }
23
24 // [EOF]
25 ?>