/// <summary> /// Creates a new instance of the <see cref="ReadabilityApiException"/> class. /// </summary> /// <param name="info"> /// The <see cref="System.Runtime.Serialization.SerializationInfo"/> /// that holds the serialized object data about the exception being thrown. /// </param> /// <param name="context"> /// The <see cref="System.Runtime.Serialization.StreamingContext"/> /// that contains contextual information about the source or destination. /// </param> protected ReadabilityApiException(SerializationInfo info, StreamingContext context) : base(info, context) { if (info != null) { _error = (ReadabilityApiError)info.GetValue("Error", typeof(ReadabilityApiError)); } }
/// <summary> /// Creates a new instance of the <see cref="ReadabilityApiException"/> class. /// </summary> /// <param name="message">A message about the exception.</param> /// <param name="innerException">The inner exception that is the cause of the current exception.</param> public ReadabilityApiException(string message, Exception innerException) : base(message, innerException) { _error = ReadabilityApiError.InternalServerError; }
/// <summary> /// Creates a new instance of the <see cref="ReadabilityApiException"/> class. /// </summary> /// <param name="message">A message about the exception.</param> /// <param name="error">The Readability error.</param> public ReadabilityApiException(string message, ReadabilityApiError error) : base(message) { _error = error; }