Package org.bson

Class BSONException

    • Constructor Summary

      Constructors 
      Constructor Description
      BSONException​(int errorCode, java.lang.String msg)  
      BSONException​(int errorCode, java.lang.String msg, java.lang.Throwable t)  
      BSONException​(java.lang.String msg)  
      BSONException​(java.lang.String msg, java.lang.Throwable t)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer getErrorCode​()
      Returns the error code.
      boolean hasErrorCode​()
      Returns if the error code is set (i.e., not null).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • BSONException

        public BSONException​(java.lang.String msg)
        Parameters:
        msg - The error message.
      • BSONException

        public BSONException​(int errorCode,
                             java.lang.String msg)
        Parameters:
        errorCode - The error code.
        msg - The error message.
      • BSONException

        public BSONException​(java.lang.String msg,
                             java.lang.Throwable t)
        Parameters:
        msg - The error message.
        t - The throwable cause.
      • BSONException

        public BSONException​(int errorCode,
                             java.lang.String msg,
                             java.lang.Throwable t)
        Parameters:
        errorCode - The error code.
        msg - The error message.
        t - The throwable cause.
    • Method Detail

      • getErrorCode

        public java.lang.Integer getErrorCode​()
        Returns the error code.
        Returns:
        The error code.
      • hasErrorCode

        public boolean hasErrorCode​()
        Returns if the error code is set (i.e., not null).
        Returns:
        true if the error code is not null.