/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.open2jam.sound;
/**
*
* @author dttvb
*/
public class SoundSystemException extends Exception {
public SoundSystemException(Throwable thrwbl) {
super(thrwbl);
}
public SoundSystemException(String string) {
super(string);
}
}