AssociationException.cs 407 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace sccdlib
  3. {
  4. public class AssociationException : RunTimeException
  5. {
  6. public AssociationException ()
  7. {
  8. }
  9. public AssociationException(string message)
  10. : base(message)
  11. {
  12. }
  13. public AssociationException(string message, Exception inner)
  14. : base(message, inner)
  15. {
  16. }
  17. }
  18. }