Class DkimSigningException

  • All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    DkimAcceptanceException

    public class DkimSigningException
    extends javax.mail.MessagingException
    A MessagingException that is used to indicate DKIM specific missbehaviors or to wrap other Exceptions that were thrown during the processing of a DKIM signature, or operations necessary for DKIM signatures.
    Since:
    1.0.0
    Author:
    Torsten Krause (tk at markenwerk dot net)
    See Also:
    Serialized Form
    • Constructor Detail

      • DkimSigningException

        public DkimSigningException​(String message)
        Constructs a DkimSigningException with the given message.
        Parameters:
        message - The message.
      • DkimSigningException

        public DkimSigningException​(String message,
                                    Exception cause)
        Constructs a DkimSigningException with the given message and cause. The given cause is chained to this exception.
        Parameters:
        message - The message.
        cause - The causing exception.