public BlockedTypeException(string type, Exception innerException) : base(MrsStrings.BlockedType(type), innerException)
 {
     this.type = type;
 }
 public BlockedTypeException(string type) : base(MrsStrings.BlockedType(type))
 {
     this.type = type;
 }