/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mytime.bll; /** * * @author Bruger */ public class TransactionException extends Exception { /** * First constructor with no parameters */ public TransactionException() { super(); } /** * Constructor with message * @param message */ public TransactionException(String message) { super(message); } }