All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.martiansoftware.jsap.SyntaxException Maven / Gradle / Ivy

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy