LicenseException.cs 910 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.ComponentModel.LicenseException
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.ComponentModel
  10. {
  11. public class LicenseException : SystemException
  12. {
  13. [MonoTODO]
  14. public LicenseException (Type type)
  15. {
  16. }
  17. [MonoTODO]
  18. public LicenseException (Type type, object instance)
  19. {
  20. }
  21. [MonoTODO]
  22. public LicenseException (Type type, object instance,
  23. string message)
  24. {
  25. }
  26. [MonoTODO]
  27. public LicenseException (Type type, object instance,
  28. string message,
  29. Exception innerException)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. [MonoTODO]
  34. public Type LicensedType {
  35. [MonoTODO]
  36. get { throw new NotImplementedException(); }
  37. }
  38. [MonoTODO]
  39. public override string ToString()
  40. {
  41. throw new NotImplementedException();
  42. }
  43. [MonoTODO]
  44. ~LicenseException()
  45. {
  46. }
  47. }
  48. }