1 package com.hammurapi.jcapture;
2 
3 //This file was taken from http://www.labbookpages.co.uk/audio/javaWavFiles.html and package declaration was added.
4 
5 public class WavFileException extends Exception
6 {
WavFileException()7 	public WavFileException()
8 	{
9 		super();
10 	}
11 
WavFileException(String message)12 	public WavFileException(String message)
13 	{
14 		super(message);
15 	}
16 
WavFileException(String message, Throwable cause)17 	public WavFileException(String message, Throwable cause)
18 	{
19 		super(message, cause);
20 	}
21 
WavFileException(Throwable cause)22 	public WavFileException(Throwable cause)
23 	{
24 		super(cause);
25 	}
26 }
27