Package unlimited.fc.server.api
Class InvalidArgumentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- unlimited.fc.server.api.InvalidArgumentException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidArgumentException extends java.lang.ExceptionTitle: FileCatalyst Direct Server API
Description: Invalid arguments were passed either by the API or via Command line. Self-explanitory I think.
Copyright: Copyright (c) 2009
Company: Unlimi-Tech Software Inc.
- Since:
- v2.7.1
- Version:
- 1.0
- Author:
- Christian Charette
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidArgumentException()Default ConstructorInvalidArgumentException(java.lang.String message)Constructor when a message is knownInvalidArgumentException(java.lang.String message, java.lang.Throwable cause)Constructor when a message and a throwable is knownInvalidArgumentException(java.lang.Throwable cause)Constructor when a message and a throwable is known
-
-
-
Constructor Detail
-
InvalidArgumentException
public InvalidArgumentException()
Default Constructor
-
InvalidArgumentException
public InvalidArgumentException(java.lang.String message)
Constructor when a message is known- Parameters:
message- Message to capture in exception
-
InvalidArgumentException
public InvalidArgumentException(java.lang.String message, java.lang.Throwable cause)Constructor when a message and a throwable is known- Parameters:
message- Message to capture in exceptioncause- Throwable to capture in exception
-
InvalidArgumentException
public InvalidArgumentException(java.lang.Throwable cause)
Constructor when a message and a throwable is known- Parameters:
cause- Throwable to capture in exception
-
-