com.ericdaugherty.mail.server.errors
Class MalformedBase64ContentException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by com.ericdaugherty.mail.server.errors.MalformedBase64ContentException
All Implemented Interfaces:
java.io.Serializable

public class MalformedBase64ContentException
extends java.io.IOException

Thrown when the passed in batch of bytes does not correspond to a base64 encoded string.

Author:
Andreas Kyrmegalos
See Also:
Serialized Form

Constructor Summary
MalformedBase64ContentException()
          Creates a new instance of MalformedBase64ContentException without detail message.
MalformedBase64ContentException(java.lang.String msg)
          Constructs an instance of MalformedBase64ContentException with the specified detail message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

MalformedBase64ContentException

public MalformedBase64ContentException()
Creates a new instance of MalformedBase64ContentException without detail message.


MalformedBase64ContentException

public MalformedBase64ContentException(java.lang.String msg)
Constructs an instance of MalformedBase64ContentException with the specified detail message.

Parameters:
msg - the detail message.