aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtoGen/DependencyResolutionException.cs
blob: 4e483fc16002978ad249535b632996b2d68b3563 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)) {
    }
  }
}