X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Fhub%2Fmain%2Fstates%2Fnode%2Fclass_BaseNodeState.php;h=171331df865a0b3910575f14585b35c82cea9406;hb=73aff29b9bc78031853b0b8c0fe0a8e04f66ac29;hp=e60b87c99c19e1d09d07cbd6df865b099d3321e4;hpb=ea369fbf3b5ab38fa5616561502015855e024b53;p=hub.git diff --git a/application/hub/main/states/node/class_BaseNodeState.php b/application/hub/main/states/node/class_BaseNodeState.php index e60b87c99..171331df8 100644 --- a/application/hub/main/states/node/class_BaseNodeState.php +++ b/application/hub/main/states/node/class_BaseNodeState.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -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 } }