1 package com.leonarduk.clearcheckbook;
2
3 public class ClearcheckbookException extends Exception {
4 /***
5 *
6 */
7 private static final long serialVersionUID = -6833991090411157540L;
8
9 public ClearcheckbookException(String text) {
10 super(text);
11 }
12
13 public ClearcheckbookException(String text, Throwable exception) {
14 super(text, exception);
15 }
16 }