Class NotEmptyException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NotEmptyException
    extends UsrException
    exception thrown whenever some container is expected to be empty and it isn't.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NotEmptyException()
      construct a new NotEmptyException with a default message.
      NotEmptyException​(java.lang.String msg)
      construct a new NotEmptyException with a given message.
    • Method Summary

      • 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
    • Constructor Detail

      • NotEmptyException

        public NotEmptyException()
        construct a new NotEmptyException with a default message.
      • NotEmptyException

        public NotEmptyException​(java.lang.String msg)
        construct a new NotEmptyException with a given message.
        Parameters:
        msg - overides the default message.