Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

dcrypt.crypto.errors.NotSupportedError


Syntax

class NotSupportedError : Exception

Remarks

Thrown when the underlying primitive does not support a method of the higher API. (read as: Thrown when something you're doing isn't supported.)

Inherits from

Exception

Conforms to

None

Publically imports

None

References

None

Members

Fields

None

Properties

None

Methods

None

Example

import dcrypt.crypto.errors.NotSupportedError;

void main() {
    throw new NotSupportedError("A nice, descriptive, error message.");
}