samples/apifest1/day1/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
jtulach@52
     1
/*
jtulach@52
     2
 * UnstableException.java
jtulach@52
     3
 *
jtulach@52
     4
 * Created on 12. Ĩervenec 2006, 14:15
jtulach@52
     5
 *
jtulach@52
     6
 * To change this template, choose Tools | Template Manager
jtulach@52
     7
 * and open the template in the editor.
jtulach@52
     8
 */
jtulach@52
     9
jtulach@52
    10
package org.netbeans.apifest.boolcircuit;
jtulach@52
    11
jtulach@52
    12
/**
jtulach@52
    13
 * Exception representing that the circuit is unstable for given
jtulach@52
    14
 * input configuration. It can happen in case there is backward loop
jtulach@52
    15
 * in the logic.
jtulach@52
    16
 *
jtulach@52
    17
 */
jtulach@52
    18
public class UnstableException extends Exception {
jtulach@52
    19
    
jtulach@52
    20
    /** Creates a new instance of UnstableException */
jtulach@52
    21
    public UnstableException() {
jtulach@52
    22
    }
jtulach@52
    23
    
jtulach@52
    24
}