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

org.asteriskjava.pbx.PBXException Maven / Gradle / Ivy

There is a newer version: 3.41.0
Show newest version
package org.asteriskjava.pbx;

public class PBXException extends Exception
{
    private static final long serialVersionUID = 1L;

    public PBXException(String message, final Exception e)
    {
        super(message, e);
    }

    public PBXException(final String message)
    {
        super(message);
    }

    public PBXException(Throwable e)
    {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy