Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/obs/common/accounting/exceptions/EntryBalanceException.java


1   /**
2    *@author David Durst
3    *@version 0.1 Alha
4    *@see BSD License
5    */
6   package com.obs.common.accounting.exceptions;
7   
8   import com.obs.common.shared.templates.GenericException;
9   
10  public class EntryBalanceException extends GenericException {
11  
12    public EntryBalanceException() {}
13    public EntryBalanceException(String msg){super(msg);}
14    
15  }