Author: sebb Date: Mon Dec 1 21:25:59 2014 New Revision: 1642763 URL: http://svn.apache.org/r1642763 Log: No longer needed in Java 6+
Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOExceptionWithCause.java Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOExceptionWithCause.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOExceptionWithCause.java?rev=1642763&r1=1642762&r2=1642763&view=diff ============================================================================== --- commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOExceptionWithCause.java (original) +++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOExceptionWithCause.java Mon Dec 1 21:25:59 2014 @@ -20,12 +20,13 @@ package org.apache.commons.io; import java.io.IOException; /** - * Subclasses IOException with the {@link Throwable} constructors missing before Java 6. If you are using Java 6, - * consider this class deprecated and use {@link IOException}. + * Subclasses IOException with the {@link Throwable} constructors missing before Java 6. * * @version $Id$ * @since 1.4 + * @deprecated (since 2.5) use {@link IOException} instead */ +@Deprecated public class IOExceptionWithCause extends IOException { /**