org.realityforge.bazel.depgen.TerminalStateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-depgen Show documentation
Show all versions of bazel-depgen Show documentation
bazel-depgen: Generate Bazel dependency scripts by traversing Maven repositories
package org.realityforge.bazel.depgen;
import javax.annotation.Nullable;
class TerminalStateException
extends RuntimeException
{
private final int _exitCode;
TerminalStateException( final int exitCode )
{
this( null, exitCode );
}
TerminalStateException( @Nullable final String message, final int exitCode )
{
this( message, null, exitCode );
}
TerminalStateException( @Nullable final String message, @Nullable final Throwable cause, final int exitCode )
{
super( message, cause );
_exitCode = exitCode;
}
int getExitCode()
{
return _exitCode;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy