labbookpage.wav.WavFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.cogchar.lib.sonograph Show documentation
Show all versions of org.cogchar.lib.sonograph Show documentation
Cogchar Sonograph - experimental/imported audio display code
package labbookpage.wav;
// A.Greensted
// http://www.labbookpages.co.uk
public class WavFileException extends Exception
{
public WavFileException()
{
super();
}
public WavFileException(String message)
{
super(message);
}
public WavFileException(String message, Throwable cause)
{
super(message, cause);
}
public WavFileException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy