- 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 aConnector.- 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 SummaryAll Methods Instance Methods Concrete Methods Modifier 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 Detail- 
IllegalConnectorArgumentsExceptionpublic IllegalConnectorArgumentsException(String s, String name) Construct 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.
 
 - 
IllegalConnectorArgumentsExceptionpublic IllegalConnectorArgumentsException(String s, List<String> names) Construct 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.
 
 
- 
 
-