Class AllocationRequestException

  • All Implemented Interfaces:
    java.io.Serializable

    public class AllocationRequestException
    extends ImagingRuntimeException
    Thrown when an allocation request is too large.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int limit  
      private java.math.BigInteger request  
      private static long serialVersionUID  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      private static java.lang.String format​(int limit, java.math.BigInteger request)  
      int getLimit()
      Gets the allocation limit.
      java.math.BigInteger getRequest()
      Gets the allocation request.
      • 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

      • limit

        private final int limit
      • request

        private final java.math.BigInteger request
    • Constructor Detail

      • AllocationRequestException

        public AllocationRequestException​(int limit,
                                          java.math.BigInteger request)
        Constructs a new instance.
        Parameters:
        limit - The allocation limit.
        request - The allocation request.
      • AllocationRequestException

        public AllocationRequestException​(int limit,
                                          java.math.BigInteger request,
                                          java.lang.Throwable throwable)
        Constructs a new instance.
        Parameters:
        limit - The allocation limit.
        request - The allocation request.
        throwable - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • AllocationRequestException

        public AllocationRequestException​(int limit,
                                          int request)
        Constructs a new instance.
        Parameters:
        limit - The allocation limit.
        request - The allocation request.
      • AllocationRequestException

        public AllocationRequestException​(int limit,
                                          long request,
                                          java.lang.Throwable throwable)
        Constructs a new instance.
        Parameters:
        limit - The allocation limit.
        request - The allocation request.
        throwable - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • Method Detail

      • format

        private static java.lang.String format​(int limit,
                                               java.math.BigInteger request)
      • getLimit

        public int getLimit()
        Gets the allocation limit.
        Returns:
        the allocation limit.
      • getRequest

        public java.math.BigInteger getRequest()
        Gets the allocation request.
        Returns:
        the allocation request.