Class IncorrectPasswordException
Namespace: Aspose.Imaging.CoreExceptions
Assembly: Aspose.Imaging.dll (25.7.0)
The incorrect password exception.
public class IncorrectPasswordException : Exception, ISerializable
{
public IncorrectPasswordException() { }
public IncorrectPasswordException(string message) : base(message) { }
public IncorrectPasswordException(string message, Exception innerException) : base(message, innerException) { }
protected IncorrectPasswordException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
Inheritance
object ← Exception ← IncorrectPasswordException
Implements
Inherited Members
Exception.GetBaseException() , Exception.ToString() , Exception.GetType() , Exception.TargetSite , Exception.Message , Exception.Data , Exception.InnerException , Exception.HelpLink , Exception.Source , Exception.HResult , Exception.StackTrace , Exception.SerializeObjectState , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
IncorrectPasswordException(string)
Initializes a new instance of the Aspose.Imaging.CoreExceptions.IncorrectPasswordException class.
public IncorrectPasswordException(string message)
{
base(message);
}
Parameters
message
string
The message that describes the error.
IncorrectPasswordException(string, Exception)
Initializes a new instance of the Aspose.Imaging.CoreExceptions.IncorrectPasswordException class.
public IncorrectPasswordException(string message, Exception innerException)
{
base(message, innerException);
}
Parameters
message
string
The error message that explains the reason for the exception.
innerException
Exception
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.