]> git.mxchange.org Git - shipsimu.git/blobdiff - ship-simu/application/ship-simu/exceptions/class_PersonellListAlreadyCreatedException.php
(no commit message)
[shipsimu.git] / ship-simu / application / ship-simu / exceptions / class_PersonellListAlreadyCreatedException.php
diff --git a/ship-simu/application/ship-simu/exceptions/class_PersonellListAlreadyCreatedException.php b/ship-simu/application/ship-simu/exceptions/class_PersonellListAlreadyCreatedException.php
deleted file mode 100644 (file)
index 3ac9078..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-// A crew list has already been initialized
-class PersonellListAlreadyCreatedException extends FrameworkException {
-       public function __construct ($class, $code) {
-               // Add a message around the missing class
-               $message = sprintf("[%s:] Die interne Crew-Liste wurde bereits initialisiert.",
-                       $class->__toString()
-               );
-
-               // Call parent constructor
-               parent::__construct($message, $code);
-       }
-}
-
-// [EOF]
-?>