]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/class_BaseNodeState.php
- Renamed InvalidStateException to UnexpectedStateException
[hub.git] / application / hub / main / states / node / class_BaseNodeState.php
index 3cb1c628edd4e5d8ec229635275eedd6522ea503..171331df865a0b3910575f14585b35c82cea9406 100644 (file)
@@ -38,13 +38,13 @@ class BaseNodeState extends BaseState {
         * it is every other state.
         *
         * @return      void
-        * @throws      InvalidStateException   If the state is not 'active'
+        * @throws      UnexpectedStateException        If the state is not 'active'
         */
        public function validateNodeStateIsActive () {
                // Just compare it...
                if (!$this instanceof NodeActiveState) {
                        // Throw the exception
-                       throw new InvalidStateException($this, self::EXCEPTION_INVALID_STATE);
+                       throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
                } // END - if
        }
 
@@ -53,13 +53,13 @@ class BaseNodeState extends BaseState {
         * exception if it is every other state.
         *
         * @return      void
-        * @throws      InvalidStateException   If the state is not 'active' and not 'announcing'
+        * @throws      UnexpectedStateException        If the state is not 'active' and not 'announcing'
         */
        public function validateNodeStateIsActiveOrAnnouncing () {
                // Just compare it...
                if ((!$this instanceof NodeActiveState) && (!$this instanceof NodeAnnouncingState)) {
                        // Throw the exception
-                       throw new InvalidStateException($this, self::EXCEPTION_INVALID_STATE);
+                       throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
                } // END - if
        }
 
@@ -68,13 +68,13 @@ class BaseNodeState extends BaseState {
         * exception if it is every other state.
         *
         * @return      void
-        * @throws      InvalidStateException   If the state is not 'active' and not 'reachable'
+        * @throws      UnexpectedStateException        If the state is not 'active' and not 'reachable'
         */
        public function validateNodeStateIsActiveOrReachable () {
                // Just compare it...
                if ((!$this instanceof NodeActiveState) && (!$this instanceof NodeReachableState)) {
                        // Throw the exception
-                       throw new InvalidStateException($this, self::EXCEPTION_INVALID_STATE);
+                       throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
                } // END - if
        }
 
@@ -83,13 +83,13 @@ class BaseNodeState extends BaseState {
         * exception if it is every other state.
         *
         * @return      void
-        * @throws      InvalidStateException   If the state is not 'active' and not 'announcing'
+        * @throws      UnexpectedStateException        If the state is not 'active' and not 'announcing'
         */
        public function validateNodeStateIsAnnouncementCompleted () {
                // Just compare it...
                if (!$this instanceof NodeAnnouncementCompletedState) {
                        // Throw the exception
-                       throw new InvalidStateException($this, self::EXCEPTION_INVALID_STATE);
+                       throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
                } // END - if
        }
 }