From 9fee0ec4ca0c5b7a334cc29dbb58e76c7a4c736e Mon Sep 17 00:00:00 2001 From: Michiel Van Der Kolk Date: Mon, 11 Jul 2005 15:42:37 +0000 Subject: Songdb java version, source. only 1.5 compatible git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7101 a1c6a512-1295-4272-9138-f99709370657 --- .../de/jarnbjo/vorbis/VorbisFormatException.java | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 songdbj/de/jarnbjo/vorbis/VorbisFormatException.java (limited to 'songdbj/de/jarnbjo/vorbis/VorbisFormatException.java') diff --git a/songdbj/de/jarnbjo/vorbis/VorbisFormatException.java b/songdbj/de/jarnbjo/vorbis/VorbisFormatException.java new file mode 100644 index 0000000000..5214298378 --- /dev/null +++ b/songdbj/de/jarnbjo/vorbis/VorbisFormatException.java @@ -0,0 +1,51 @@ +/* + * $ProjectName$ + * $ProjectRevision$ + * ----------------------------------------------------------- + * $Id$ + * ----------------------------------------------------------- + * + * $Author$ + * + * Description: + * + * Copyright 2002-2003 Tor-Einar Jarnbjo + * ----------------------------------------------------------- + * + * Change History + * ----------------------------------------------------------- + * $Log$ + * Revision 1.1 2005/07/11 15:42:36 hcl + * Songdb java version, source. only 1.5 compatible + * + * Revision 1.2 2005/02/09 23:10:47 shred + * Serial UID für jarnbjo + * + * Revision 1.1.1.1 2004/04/04 22:09:12 shred + * First Import + * + * Revision 1.2 2003/03/16 01:11:12 jarnbjo + * no message + * + * + */ + +package de.jarnbjo.vorbis; + +import java.io.IOException; + +/** + * Exception thrown when trying to read a corrupted Vorbis stream. + */ + +public class VorbisFormatException extends IOException { + private static final long serialVersionUID = 3616453405694834743L; + + public VorbisFormatException() { + super(); + } + + public VorbisFormatException(String message) { + super(message); + } +} \ No newline at end of file -- cgit v1.2.3