| Home >> All >> com >> obs >> common >> accounting >> [ exceptions Javadoc ] |
Source code: com/obs/common/accounting/exceptions/DateRangeException.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 DateRangeException extends GenericException { 11 12 public DateRangeException() { 13 super(); 14 } 15 public DateRangeException(String msg) { 16 super(msg); 17 } 18 }