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

com.g2forge.alexandria.java.concurrent.RuntimeInterruptedException Maven / Gradle / Ivy

There is a newer version: 0.0.18
Show newest version
package com.g2forge.alexandria.java.concurrent;

import com.g2forge.alexandria.java.core.error.IRuntimeWrappingException;

public class RuntimeInterruptedException extends RuntimeException implements IRuntimeWrappingException {
	private static final long serialVersionUID = -2250012381759988490L;

	public RuntimeInterruptedException(final InterruptedException cause) {
		super(cause);
	}

	public RuntimeInterruptedException(final String message, final InterruptedException cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy