package dolda.xiphutil; /** * Signals that an Ogg stream was malformatted. * * @author Fredrik Tolf <code><fredrik@dolda2000.com></code> */ public class OggException extends FormatException { public OggException() { super("Invalid Ogg data"); } }