1 package org.lsst.ccs.utilities.beanutils;
2
3 /**
4 * An operation was performed while the bean was in an incorrect state:
5 * e.g.
6 * @author bamade
7 */
8 public class BeanStateException extends RuntimeException{
9 public BeanStateException() {
10 }
11
12 public BeanStateException(String s) {
13 super(s);
14 }
15
16 public BeanStateException(String s, Throwable throwable) {
17 super(s, throwable);
18 }
19
20 public BeanStateException(Throwable throwable) {
21 super(throwable);
22 }
23 }