org.asteriskjava.config.MissingDirectiveParameterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.config;
/**
* A required parameter to a directive is missing.
* The #include and #exec directives require a parameter (include file or command to execute).
*/
public class MissingDirectiveParameterException extends ConfigParseException {
private static final long serialVersionUID = -3802754628756681515L;
public MissingDirectiveParameterException(String filename, int lineno, String format, Object... params) {
super(filename, lineno, format, params);
}
}