AssociationReferenceException.cs 440 B

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