java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.jdi.connect.IllegalConnectorArgumentsException
- All Implemented Interfaces:
- Serializable
public class IllegalConnectorArgumentsException extends Exception
Thrown to indicate an invalid argument or
 inconsistent passed to a 
Connector.- Since:
- 1.3
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description IllegalConnectorArgumentsException(String s, String name)Construct anIllegalConnectorArgumentsExceptionwith the specified detail message and the name of the argument which is invalid or inconsistent.IllegalConnectorArgumentsException(String s, List<String> names)Construct anIllegalConnectorArgumentsExceptionwith the specified detail message and aListof names of arguments which are invalid or inconsistent.
- 
Method SummaryModifier and Type Method Description List<String>argumentNames()Return aListcontaining the names of the invalid or inconsistent arguments.Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
IllegalConnectorArgumentsExceptionConstruct anIllegalConnectorArgumentsExceptionwith 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.
 
- 
IllegalConnectorArgumentsExceptionConstruct anIllegalConnectorArgumentsExceptionwith the specified detail message and aListof names of arguments which are invalid or inconsistent.- Parameters:
- s- the detailed message.
- names- a- Listcontaining the names of the invalid or inconsistent argument.
 
 
- 
- 
Method Details- 
argumentNamesReturn aListcontaining the names of the invalid or inconsistent arguments.- Returns:
- a Listof argument names.
 
 
-