Class DkimException

  • All Implemented Interfaces:
    Serializable

    public class DkimException
    extends RuntimeException
    A RuntimeException that is used to indicate DKIM specific missbehaviors or to wrap other Exceptions that were thrown during the processing of DKIM specific operations.
    Since:
    1.0.0
    Author:
    Torsten Krause (tk at markenwerk dot net)
    See Also:
    Serialized Form
    • Constructor Detail

      • DkimException

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

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