samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/UnstableException.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:52:45 +0200
changeset 52 4257f4cf226b
permissions -rw-r--r--
Adding samples from API fest to the repository, including pieces of their code in the document, not just links
     1 /*
     2  * UnstableException.java
     3  *
     4  * Created on 12. Ĩervenec 2006, 14:15
     5  *
     6  * To change this template, choose Tools | Template Manager
     7  * and open the template in the editor.
     8  */
     9 
    10 package org.netbeans.apifest.boolcircuit;
    11 
    12 /**
    13  * Exception representing that the circuit is unstable for given
    14  * input configuration. It can happen in case there is backward loop
    15  * in the logic.
    16  *
    17  */
    18 public class UnstableException extends Exception {
    19     
    20     /** Creates a new instance of UnstableException */
    21     public UnstableException() {
    22     }
    23     
    24 }