org.jcodec.containers.mkv.EBMLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcodec Show documentation
Show all versions of jcodec Show documentation
Pure Java implementation of video/audio codecs and formats
package org.jcodec.containers.mkv;
/**
* This class is part of JCodec ( www.jcodec.org )
* This software is distributed under FreeBSD License
*
* Usually thrown when malformed EBML code is encountered.
*
* Based on work by Matroska.org and written by
* John Cannon (c) 2002
* Jory Stone (c) 2004
*
* @author George Gardiner
*
*/
public class EBMLException extends Exception
{
public EBMLException(String msg)
{
super(msg);
}
}