Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1878 - development/main/planet/components/fsm/api/src/main/net/dpml/fsm

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1878 - development/main/planet/components/fsm/api/src/main/net/dpml/fsm
  • Date: Tue, 22 Feb 2005 21:24:52 +0100

Author: mcconnell
Date: Tue Feb 22 21:24:52 2005
New Revision: 1878

Modified:

development/main/planet/components/fsm/api/src/main/net/dpml/fsm/AbstractState.java
Log:
remove NullArgumentException

Modified:
development/main/planet/components/fsm/api/src/main/net/dpml/fsm/AbstractState.java
==============================================================================
---
development/main/planet/components/fsm/api/src/main/net/dpml/fsm/AbstractState.java
(original)
+++
development/main/planet/components/fsm/api/src/main/net/dpml/fsm/AbstractState.java
Tue Feb 22 21:24:52 2005
@@ -21,9 +21,6 @@
import java.util.Locale;
import java.util.ResourceBundle;

-import net.dpml.lang.NullArgumentException;
-
-
/**
* This is an Abstract base class, suitable to extend and override the
entry()
* and exit methods.
@@ -55,14 +52,14 @@
* The AbstractState requires an Identity, which muct be unique, as it is
* by default the sole discriminator in the equals() and hashCode()
methods.
* @param identity the Identity of the State under construction.
- * @exception NullArgumentException if the identity is null or empty
string.
+ * @exception NullPointerException if the identity is null or empty
string.
*/
public AbstractState( String identity )
- throws NullArgumentException
+ throws NullPointerException
{
if( identity == null || identity.length() == 0 )
{
- throw new NullArgumentException( "identity" );
+ throw new NullPointerException( "identity" );
}

m_identity = identity;



  • svn commit: r1878 - development/main/planet/components/fsm/api/src/main/net/dpml/fsm, mcconnell, 02/22/2005

Archive powered by MHonArc 2.6.24.

Top of Page