Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2194 - in development/main/metro/automation/control/src/main/net/dpml/automation: . model

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2194 - in development/main/metro/automation/control/src/main/net/dpml/automation: . model
  • Date: Sun, 03 Apr 2005 01:43:07 -0500

Author: mcconnell AT dpml.net
Date: Sun Apr 3 01:43:04 2005
New Revision: 2194

Added:
development/main/metro/automation/control/src/main/net/dpml/automation/

development/main/metro/automation/control/src/main/net/dpml/automation/model/

development/main/metro/automation/control/src/main/net/dpml/automation/model/ModelException.java
Log:


Added:
development/main/metro/automation/control/src/main/net/dpml/automation/model/ModelException.java
==============================================================================
--- (empty file)
+++
development/main/metro/automation/control/src/main/net/dpml/automation/model/ModelException.java
Sun Apr 3 01:43:04 2005
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2005 Stephen J. McConnell
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package net.dpml.automation.model;
+
+/**
+ * Unexpected runtime exception indicating an internal model error.
+ *
+ * @author <a href="mailto:dev-dpml AT lists.ibiblio.org";>The Digital Product
Meta Library</a>
+ * @version $Revision: 1.2 $ $Date: 2004/03/17 10:30:09 $
+ */
+public class ModelException extends Exception
+{
+ public ModelException( String message )
+ {
+ this( message, null );
+ }
+
+ public ModelException( String message, Throwable cause )
+ {
+ super( message, cause );
+ }
+
+}
+



  • svn commit: r2194 - in development/main/metro/automation/control/src/main/net/dpml/automation: . model, mcconnell, 04/02/2005

Archive powered by MHonArc 2.6.24.

Top of Page