java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.jdi.connect.IllegalConnectorArgumentsException
- All Implemented Interfaces:
Serializable
Thrown to indicate an invalid argument or
inconsistent passed to a
Connector
.- Since:
- 1.3
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct anIllegalConnectorArgumentsException
with the specified detail message and the name of the argument which is invalid or inconsistent.IllegalConnectorArgumentsException
(String s, List<String> names) Construct anIllegalConnectorArgumentsException
with the specified detail message and aList
of names of arguments which are invalid or inconsistent. -
Method Summary
Modifier and TypeMethodDescriptionReturn aList
containing the names of the invalid or inconsistent arguments.Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalConnectorArgumentsException
Construct anIllegalConnectorArgumentsException
with the specified detail message and the name of the argument which is invalid or inconsistent.- Parameters:
s
- the detailed message.name
- the name of the invalid or inconsistent argument.
-
IllegalConnectorArgumentsException
Construct anIllegalConnectorArgumentsException
with the specified detail message and aList
of names of arguments which are invalid or inconsistent.- Parameters:
s
- the detailed message.names
- aList
containing the names of the invalid or inconsistent argument.
-
-
Method Details
-
argumentNames
Return aList
containing the names of the invalid or inconsistent arguments.- Returns:
- a
List
of argument names.
-