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

org.asteriskjava.config.UnknownDirectiveException Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.config;

/**
 * An unknown directive has been encountered.

* Asterisk only supports #include and #exec directives. */ public class UnknownDirectiveException extends ConfigParseException { private static final long serialVersionUID = 4356355066633810196L; public UnknownDirectiveException(String filename, int lineno, String format, Object... params) { super(filename, lineno, format, params); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy