]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/stacker/class_Stackable.php
Continued:
[core.git] / framework / main / interfaces / stacker / class_Stackable.php
index 79199068ebbcbb32ee5efb0867be0ae8ef1d9d0c..aebbd9f878f257f2612960b95b6aa05dd3874925 100644 (file)
@@ -43,7 +43,7 @@ interface Stackable extends FrameworkInterface {
         *
         * @param       $stackerName    Name of the stacker
         * @return      $value                  Value of the current stack entry
-        * @throws      NoStackerException      If the named stacker was not found
+        * @throws      BadMethodCallException  If the named stacker was not found
         * @throws      EmptyStackerException   If the named stacker is empty
         */
        function popNamed (string $stackerName);
@@ -53,7 +53,7 @@ interface Stackable extends FrameworkInterface {
         *
         * @param       $stackerName    Name of the stacker
         * @return      $value                  Value of last added value
-        * @throws      NoStackerException      If the named stacker was not found
+        * @throws      BadMethodCallException  If the named stacker was not found
         * @throws      EmptyStackerException   If the named stacker is empty
         */
        function getNamed (string $stackerName);
@@ -71,7 +71,7 @@ interface Stackable extends FrameworkInterface {
         *
         * @param       $stackerName    Name of the stack
         * @return      $isEmpty                        Whether the stack is empty
-        * @throws      NoStackerException      If given stack is missing
+        * @throws      BadMethodCallException  If given stack is missing
         */
        function isStackEmpty (string $stackerName);