aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtoGen/DependencyResolutionException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/ProtoGen/DependencyResolutionException.cs')
-rw-r--r--csharp/ProtoGen/DependencyResolutionException.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/csharp/ProtoGen/DependencyResolutionException.cs b/csharp/ProtoGen/DependencyResolutionException.cs
deleted file mode 100644
index 4e483fc1..00000000
--- a/csharp/ProtoGen/DependencyResolutionException.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace Google.ProtocolBuffers.ProtoGen {
- /// <summary>
- /// Exception thrown when dependencies within a descriptor set can't be resolved.
- /// </summary>
- public sealed class DependencyResolutionException : Exception {
- public DependencyResolutionException(string message) : base(message) {
- }
-
- public DependencyResolutionException(string format, params object[] args)
- : base(string.Format(format, args)) {
- }
- }
-}