com.martiansoftware.jsap.SyntaxException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsap Show documentation
Show all versions of jsap Show documentation
A porting of JSAP to java 1.7+.
The newest version!
/*
* Copyright (c) 2002-2004, Martian Software, Inc.
* This file is made available under the LGPL as described in the accompanying
* LICENSE.TXT file.
*/
package com.martiansoftware.jsap;
/**
* An exception indicating that a syntax error was encountered in the argument
* list.
*
* @author Marty Lamb
*/
public class SyntaxException extends JSAPException {
/**
* Creates a new SyntaxException with the specified message.
* @param msg a description of the syntax problem.
*/
public SyntaxException(String msg) {
super(msg);
}
}