C# Class Catel.NotSupportedInPlatformException

Exception in case the functionality is not supported in the current platform. Unfortunately, some platforms miss a lot of functionality. When a feature is not supported in Catel, this is because the .NET Framework (or actually the specified platform) does not allow the code to handle that specific feature.
Inheritance: System.Exception
Show file Open project: Catel/Catel

Public Methods

Method Description
NotSupportedInPlatformException ( ) : System

Initializes a new instance of the NotSupportedInPlatformException class.

NotSupportedInPlatformException ( string message ) : System

Initializes a new instance of the NotSupportedInPlatformException class.

Method Details

NotSupportedInPlatformException() public method

Initializes a new instance of the NotSupportedInPlatformException class.
public NotSupportedInPlatformException ( ) : System
return System

NotSupportedInPlatformException() public method

Initializes a new instance of the NotSupportedInPlatformException class.
public NotSupportedInPlatformException ( string message ) : System
message string The message.
return System