Package sootup.core.model
Class BuilderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
sootup.core.model.BuilderException
- All Implemented Interfaces:
Serializable
Represents a build error.
- Author:
- Jan Martin Persch
- See Also:
-
Constructor Summary
ConstructorDescriptionBuilderException
(Class<?> builderClass, Class<?> buildableClass) Creates a new instance of theBuilderException
class.BuilderException
(Class<?> builderClass, Class<?> buildableClass, Throwable cause) Creates a new instance of theBuilderException
class. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BuilderException
Creates a new instance of theBuilderException
class.- Parameters:
builderClass
- The builder class.buildableClass
- The class to build.
-
BuilderException
public BuilderException(@Nonnull Class<?> builderClass, @Nonnull Class<?> buildableClass, @Nullable Throwable cause) Creates a new instance of theBuilderException
class.- Parameters:
builderClass
- The builder class.buildableClass
- The class to build.cause
- The cause.
-
-
Method Details
-
getBuilderClass
Gets the builder class.- Returns:
- The value to get.
-
getBuildableClass
Gets the buildable class.- Returns:
- The value to get.
-