samples/apifest1/day1/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/UnstableException.java
changeset 52 4257f4cf226b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/apifest1/day1/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/UnstableException.java	Sat Jun 14 09:52:45 2008 +0200
     1.3 @@ -0,0 +1,24 @@
     1.4 +/*
     1.5 + * UnstableException.java
     1.6 + *
     1.7 + * Created on 12. Ĩervenec 2006, 14:15
     1.8 + *
     1.9 + * To change this template, choose Tools | Template Manager
    1.10 + * and open the template in the editor.
    1.11 + */
    1.12 +
    1.13 +package org.netbeans.apifest.boolcircuit;
    1.14 +
    1.15 +/**
    1.16 + * Exception representing that the circuit is unstable for given
    1.17 + * input configuration. It can happen in case there is backward loop
    1.18 + * in the logic.
    1.19 + *
    1.20 + */
    1.21 +public class UnstableException extends Exception {
    1.22 +    
    1.23 +    /** Creates a new instance of UnstableException */
    1.24 +    public UnstableException() {
    1.25 +    }
    1.26 +    
    1.27 +}