DependencyResolutionException.cs 517 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Google.ProtocolBuffers.ProtoGen {
  5. /// <summary>
  6. /// Exception thrown when dependencies within a descriptor set can't be resolved.
  7. /// </summary>
  8. public sealed class DependencyResolutionException : Exception {
  9. public DependencyResolutionException(string message) : base(message) {
  10. }
  11. public DependencyResolutionException(string format, params object[] args)
  12. : base(string.Format(format, args)) {
  13. }
  14. }
  15. }