public static void ThrowOnError(this HouseArrestError value, string message)
 {
     if ((value != HouseArrestError.Success))
     {
         throw new HouseArrestException(value, message);
     }
 }
 public static bool IsError(this HouseArrestError value)
 {
     return(value != HouseArrestError.Success);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="HouseArrestException"/> class with a specified error code and error message.
 /// <summary>
 /// <param name="error">
 /// The error code of the error that occurred.
 /// </param>
 /// <param name="message">
 /// A message which describes the error.
 /// </param>
 public HouseArrestException(HouseArrestError error, string message) :
     base(string.Format("An HouseArrest error occurred. {1}. The error code was {0}", error, message))
 {
     this.errorCode = error;
 }