NotImplementedException constructor
const
NotImplementedException(
- String message
Creates a NotImplementedException with the specified message
.
The message
is a human-readable description of the not implemented error.
Implementation
const NotImplementedException(String message)
: super(message, HttpStatus.notImplemented);