Revision: 378
http://flatpack.svn.sourceforge.net/flatpack/?rev=378&view=rev
Author: zepernick
Date: 2007-11-17 08:15:17 -0800 (Sat, 17 Nov 2007)
Log Message:
-----------
Added an option on the Parser setFlagEmptyRows(). This will make the DataSet.isRowEmpty() method available. This method will return true when there is no data on any columns in the row.
Added Paths:
-----------
trunk/flatpack/src/main/java/net/sf/flatpack/util/FPInvalidUsageException.java
Added: trunk/flatpack/src/main/java/net/sf/flatpack/util/FPInvalidUsageException.java
===================================================================
--- trunk/flatpack/src/main/java/net/sf/flatpack/util/FPInvalidUsageException.java (rev 0)
+++ trunk/flatpack/src/main/java/net/sf/flatpack/util/FPInvalidUsageException.java 2007-11-17 16:15:17 UTC (rev 378)
@@ -0,0 +1,13 @@
+package net.sf.flatpack.util;
+
+/**
+ * Thrown when using a parsing option inappropriately
+ *
+ * @author Paul Zepernick
+ */
+public class FPInvalidUsageException extends RuntimeException{
+
+ public FPInvalidUsageException(final String msg) {
+ super(msg);
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|