Import dotnetDBF for error handling.
This commit is contained in:
27
dotnetdbf/original java src/DBFException.java
Normal file
27
dotnetdbf/original java src/DBFException.java
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
DBFException
|
||||
Represents exceptions happen in the JAvaDBF classes.
|
||||
|
||||
This file is part of JavaDBF packege.
|
||||
|
||||
author: anil@linuxense.com
|
||||
license: LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
|
||||
$Id: DBFException.java,v 1.2 2004/03/31 10:40:18 anil Exp $
|
||||
*/
|
||||
package com.linuxense.javadbf;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class DBFException extends IOException {
|
||||
|
||||
public DBFException() {
|
||||
|
||||
super();
|
||||
}
|
||||
|
||||
public DBFException( String msg) {
|
||||
|
||||
super( msg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user