summaryrefslogtreecommitdiffstats
path: root/songdbj/de/jarnbjo/ogg/EndOfOggStreamException.java
blob: 4a0c3200f49c8ac85c099fe19336731b45eb5076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * $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.1  2003/03/03 21:02:20  jarnbjo
 * no message
 *
 */

 package de.jarnbjo.ogg;

import java.io.IOException;

/**
 * Exception thrown when reaching the end of an Ogg stream
 */

public class EndOfOggStreamException extends IOException {
  private static final long serialVersionUID = 3907210438109444408L;

  public EndOfOggStreamException() {
   }
}