com.github.olaaronsson.process.impl.InternalProcessOtherRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of catchitcozucan Show documentation
Show all versions of catchitcozucan Show documentation
nifty portable processing library for stateful subjects
The newest version!
package com.github.olaaronsson.process.impl;
import com.github.olaaronsson.process.ErrorCodeCarrier;
class InternalProcessOtherRuntimeException extends RuntimeException implements ErrorCodeCarrier {
private static final int NO_ERROR = 0;
private final int errorCode;
protected InternalProcessOtherRuntimeException(String message, Throwable cause) {
super(message, cause);
this.errorCode = NO_ERROR;
}
@Override
public int getErrorCode() {
return errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy