Class CommandLine.UnmatchedArgumentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.logging.log4j.core.tools.picocli.CommandLine.PicocliException
-
- org.apache.logging.log4j.core.tools.picocli.CommandLine.ParameterException
-
- org.apache.logging.log4j.core.tools.picocli.CommandLine.UnmatchedArgumentException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- CommandLine
public static class CommandLine.UnmatchedArgumentException extends CommandLine.ParameterException
Exception indicating that a command line argument could not be mapped to any of the fields annotated withCommandLine.Option
orCommandLine.Parameters
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnmatchedArgumentException(CommandLine commandLine, java.lang.String msg)
UnmatchedArgumentException(CommandLine commandLine, java.util.List<java.lang.String> args)
UnmatchedArgumentException(CommandLine commandLine, java.util.Stack<java.lang.String> args)
-
Method Summary
-
Methods inherited from class org.apache.logging.log4j.core.tools.picocli.CommandLine.ParameterException
getCommandLine
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnmatchedArgumentException
public UnmatchedArgumentException(CommandLine commandLine, java.lang.String msg)
-
UnmatchedArgumentException
public UnmatchedArgumentException(CommandLine commandLine, java.util.Stack<java.lang.String> args)
-
UnmatchedArgumentException
public UnmatchedArgumentException(CommandLine commandLine, java.util.List<java.lang.String> args)
-
-