aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtoGen/InvalidOptionsException.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-10-22 13:18:49 +0100
committerJon Skeet <skeet@pobox.com>2008-10-22 13:18:49 +0100
commitf0589506c96600dcd01319b9d1929d87505f3daa (patch)
tree945bc56e2e2da748271acc8e80deb7ca22aaaf54 /csharp/ProtoGen/InvalidOptionsException.cs
parente60ce8bfafca616ed4fd430ae4f82360de165e80 (diff)
downloadprotobuf-f0589506c96600dcd01319b9d1929d87505f3daa.tar.gz
protobuf-f0589506c96600dcd01319b9d1929d87505f3daa.tar.bz2
protobuf-f0589506c96600dcd01319b9d1929d87505f3daa.zip
Wiping slate clean to start again with new layout.
Diffstat (limited to 'csharp/ProtoGen/InvalidOptionsException.cs')
-rw-r--r--csharp/ProtoGen/InvalidOptionsException.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/csharp/ProtoGen/InvalidOptionsException.cs b/csharp/ProtoGen/InvalidOptionsException.cs
deleted file mode 100644
index aee03228..00000000
--- a/csharp/ProtoGen/InvalidOptionsException.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using Google.ProtocolBuffers.Collections;
-
-namespace Google.ProtocolBuffers.ProtoGen {
- /// <summary>
- /// Exception thrown to indicate that the options passed were invalid.
- /// </summary>
- public sealed class InvalidOptionsException : Exception {
-
- private readonly IList<string> reasons;
-
- /// <summary>
- /// An immutable list of reasons why the options were invalid.
- /// </summary>
- public IList<string> Reasons {
- get { return reasons; }
- }
-
- public InvalidOptionsException(IList<string> reasons)
- : base(BuildMessage(reasons)) {
- this.reasons = Lists.AsReadOnly(reasons);
- }
-
- private static string BuildMessage(IEnumerable<string> reasons) {
- StringBuilder builder = new StringBuilder("Invalid options:");
- builder.AppendLine();
- foreach (string reason in reasons) {
- builder.Append(" ");
- builder.AppendLine(reason);
- }
- return builder.ToString();
- }
- }
-}