NSErrorException Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Exception that wraps an Objective-C NSError.
public class NSErrorException : Exception
type NSErrorException = class
inherit Exception
- Inheritance
-
NSErrorException
Remarks
The exception wraps an Objective-C NSError. These are created when using Async programming to set the Task's exception to the resulting error, they are not thrown by any APIs in MonoTouch.
Constructors
NSErrorException(NSError) |
Creates an NSErrorException that encapsulates an NSError. |
Properties
Code |
The NSError.Code property |
Domain |
The NSError's Domain property. |
Error |
The underlying NSError that is being wrapped. |
Message | |
UserInfo |
The NSError's UserInfo. |