org.asteriskjava.pbx.InvalidChannelName 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.
package org.asteriskjava.pbx;
public class InvalidChannelName extends Exception
{
private static final long serialVersionUID = 1L;
public InvalidChannelName(final String message)
{
super(message);
}
}