org.dstadler.audio.util.RuntimeInterruptedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-audio Show documentation
Show all versions of commons-audio Show documentation
Common utilities I find useful when developing audio-related projects.
package org.dstadler.audio.util;
/**
* Helper to wrap InterruptedException as unchecked exception.
*/
public class RuntimeInterruptedException extends RuntimeException {
public RuntimeInterruptedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy