Package net.bytebuddy.pool
Class TypePool.Resolution.NoSuchTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- net.bytebuddy.pool.TypePool.Resolution.NoSuchTypeException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing interface:
- TypePool.Resolution
public static class TypePool.Resolution.NoSuchTypeException extends java.lang.IllegalStateException
An exception that indicates that aTypePool
could not resolve aTypeDescription
for a given name.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
The name of the type that could not be resolved.private static long
serialVersionUID
The serial version UID.
-
Constructor Summary
Constructors Constructor Description NoSuchTypeException(java.lang.String name)
Creates a new exception to indicate an unresolved type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of the type that could not be resolved.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serial version UID.- See Also:
- Constant Field Values
-
name
private final java.lang.String name
The name of the type that could not be resolved.
-
-