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

org.rubycoder.gsm.InvalidGSMFrameException Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.rubycoder.gsm;

/**
 *
 * @author kane
 */
public class InvalidGSMFrameException extends Exception
{
    /**
     * Creates a new instance of InvalidGSMFrameException without
     * detail message.
     */
    public InvalidGSMFrameException()
    {
    }

    /**
     * Constructs an instance of InvalidGSMFrameException with the
     * specified detail message.
     *
     * @param msg
     *            the detail message.
     */
    public InvalidGSMFrameException(String msg)
    {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy