
com.lumiomedical.flow.interruption.InterruptionException Maven / Gradle / Ivy
package com.lumiomedical.flow.interruption;
/**
* @author Pierre Lecerf ([email protected])
* Created on 2020/12/22
*/
public final class InterruptionException extends RuntimeException
{
private static final InterruptionException singleton = new InterruptionException();
/**
* @throws InterruptionException
*/
public static InterruptionException interrupt() throws InterruptionException
{
return InterruptionException.singleton;
}
private InterruptionException()
{
super("Flow branch interruption request", null, false, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy