All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dstadler.audio.util.RuntimeInterruptedException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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