aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtoGen/DependencyResolutionException.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/DependencyResolutionException.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/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)) {
- }
- }
-}