You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2015/05/04 11:14:48 UTC

svn commit: r1677561 - in /poi/trunk/src/java/org/apache/poi: EmptyFileException.java EncryptedDocumentException.java

Author: nick
Date: Mon May  4 09:14:48 2015
New Revision: 1677561

URL: http://svn.apache.org/r1677561
Log:
New EmptyFileException, and fix serial warning

Added:
    poi/trunk/src/java/org/apache/poi/EmptyFileException.java
Modified:
    poi/trunk/src/java/org/apache/poi/EncryptedDocumentException.java

Added: poi/trunk/src/java/org/apache/poi/EmptyFileException.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/EmptyFileException.java?rev=1677561&view=auto
==============================================================================
--- poi/trunk/src/java/org/apache/poi/EmptyFileException.java (added)
+++ poi/trunk/src/java/org/apache/poi/EmptyFileException.java Mon May  4 09:14:48 2015
@@ -0,0 +1,28 @@
+/* ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+==================================================================== */
+package org.apache.poi;
+
+/**
+ * Exception thrown if an Empty (zero byte) file is supplied
+ */
+public class EmptyFileException extends IllegalArgumentException {
+    private static final long serialVersionUID = 1536449292174360166L;
+
+    public EmptyFileException() {
+		super("The supplied file was empty (zero bytes long)");
+	}
+}
\ No newline at end of file

Modified: poi/trunk/src/java/org/apache/poi/EncryptedDocumentException.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/EncryptedDocumentException.java?rev=1677561&r1=1677560&r2=1677561&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/EncryptedDocumentException.java (original)
+++ poi/trunk/src/java/org/apache/poi/EncryptedDocumentException.java Mon May  4 09:14:48 2015
@@ -16,9 +16,10 @@
 ==================================================================== */
 package org.apache.poi;
 
-@SuppressWarnings("serial")
 public class EncryptedDocumentException extends IllegalStateException
 {
+    private static final long serialVersionUID = 7276950444540469193L;
+    
 	public EncryptedDocumentException(String s) {
 		super(s);
 	}



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org