1234567891011121314151617181920212223 |
- using System;
- namespace sccdlib
- {
- public class AssociationReferenceException : RunTimeException
- {
- public AssociationReferenceException ()
- {
- }
-
- public AssociationReferenceException(string message)
- : base(message)
- {
- }
-
- public AssociationReferenceException(string message, Exception inner)
- : base(message, inner)
- {
- }
- }
- }
|