| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // System.ComponentModel.LicenseException
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- namespace System.ComponentModel
- {
- public class LicenseException : SystemException
- {
- [MonoTODO]
- public LicenseException (Type type)
- {
- }
-
- [MonoTODO]
- public LicenseException (Type type, object instance)
- {
- }
-
- [MonoTODO]
- public LicenseException (Type type, object instance,
- string message)
- {
- }
-
- [MonoTODO]
- public LicenseException (Type type, object instance,
- string message,
- Exception innerException)
- {
- throw new NotImplementedException();
- }
-
- [MonoTODO]
- public Type LicensedType {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~LicenseException()
- {
- }
-
- }
- }
|