Class BinaryPersistenceExceptionStateInvalidLength

    • Constructor Detail

      • BinaryPersistenceExceptionStateInvalidLength

        public BinaryPersistenceExceptionStateInvalidLength​(long address,
                                                            long length,
                                                            long typeId,
                                                            long objectOid)
      • BinaryPersistenceExceptionStateInvalidLength

        public BinaryPersistenceExceptionStateInvalidLength​(long address,
                                                            long length,
                                                            long typeId,
                                                            long objectOid,
                                                            String message)
      • BinaryPersistenceExceptionStateInvalidLength

        public BinaryPersistenceExceptionStateInvalidLength​(long address,
                                                            long length,
                                                            long typeId,
                                                            long objectOid,
                                                            Throwable cause)
      • BinaryPersistenceExceptionStateInvalidLength

        public BinaryPersistenceExceptionStateInvalidLength​(long address,
                                                            long length,
                                                            long typeId,
                                                            long objectOid,
                                                            String message,
                                                            Throwable cause)
      • BinaryPersistenceExceptionStateInvalidLength

        public BinaryPersistenceExceptionStateInvalidLength​(long address,
                                                            long length,
                                                            long typeId,
                                                            long objectOid,
                                                            String message,
                                                            Throwable cause,
                                                            boolean enableSuppression,
                                                            boolean writableStackTrace)
    • Method Detail

      • getLength

        public long getLength()
      • getTypeId

        public long getTypeId()
      • getAddress

        public long getAddress()
      • getObjectOid

        public long getObjectOid()
      • getMessage

        public String getMessage()
        Description copied from class: BaseException
        Due to bad class design in the JDK's Throwable, this getter-named methods actually serves as the output string assembly method.
        For the actual message getter, see BaseException.message() (which is a preferable name, anyway).
        For the actually executed logic, see BaseException.assembleOutputString(), which is called by this method.
        Overrides:
        getMessage in class BaseException
        Returns:
        this exception type's generic output string plus an explicit message if present.