org.rubycoder.gsm.InvalidGSMFrameException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
The 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