Package org.apache.hadoop
Class HadoopIllegalArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.hadoop.HadoopIllegalArgumentException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidPathException
Indicates that a method has been passed illegal or invalid argument. This
exception is thrown instead of IllegalArgumentException to differentiate the
exception thrown in Hadoop implementation from the one thrown in JDK.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionHadoopIllegalArgumentException(String message) Constructs exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HadoopIllegalArgumentException
Constructs exception with the specified detail message.- Parameters:
message- detailed message.
-