Class 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 a TypePool could not resolve a TypeDescription 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.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.
    • Constructor Detail

      • NoSuchTypeException

        public NoSuchTypeException​(java.lang.String name)
        Creates a new exception to indicate an unresolved type.
        Parameters:
        name - The name of the type that could not be resolved.
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the name of the type that could not be resolved.
        Returns:
        The name of the type that could not be resolved.