class_MissingMethodException.php

Go to the documentation of this file.
00001 <?php
00025 class MissingMethodException extends FrameworkException {
00033         public function __construct (array $classArray, $code) {
00034                 // Add a message around the missing class
00035                 $message = sprintf("[%s:%d] This class has no method <u>%s()</u>!",
00036                         $classArray[0]->__toString(),
00037                         $this->getLine(),
00038                         $classArray[1]
00039                 );
00040 
00041                 // Call parent constructor
00042                 parent::__construct($message, $code);
00043         }
00044 }
00045 
00046 // [EOF]
00047 ?>

Generated on Mon Dec 8 01:06:45 2008 for Ship-Simulator by  doxygen 1.5.6