Add missing exception message

This commit is contained in:
Oliver Booth 2022-04-22 12:17:59 +01:00
parent cfa27e0b4f
commit 24b4ffed0b
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
2 changed files with 12 additions and 0 deletions

View File

@ -150,6 +150,15 @@ namespace X10D {
}
}
/// <summary>
/// Looks up a localized string similar to The length of the stream is too large..
/// </summary>
internal static string StreamTooLarge {
get {
return ResourceManager.GetString("StreamTooLarge", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {{0}} does not inherit {typeof(Attribute)}.
/// </summary>

View File

@ -50,6 +50,9 @@
<data name="StreamDoesNotSupportWriting" xml:space="preserve">
<value>The stream does not support writing.</value>
</data>
<data name="StreamTooLarge" xml:space="preserve">
<value>The length of the stream is too large.</value>
</data>
<data name="MaxValueGreaterThanEqualTo0" xml:space="preserve">
<value>maxValue must be greater than or equal to 0</value>
</data>