ChannelException.cs 349 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Taobao.Top.Link.Channel
  5. {
  6. public class ChannelException : LinkException
  7. {
  8. public ChannelException(string message) : base(message) { }
  9. public ChannelException(string message, Exception innerException) : base(message, innerException) { }
  10. }
  11. }