ConvOverflowException

Thrown on conversion overflow errors.

class ConvOverflowException : ConvException {}

Inherited Members

From ConvException

__anonymous
mixin basicExceptionCtors

Examples

import std.exception : assertThrown;
assertThrown!ConvOverflowException(to!ubyte(1_000_000));

Meta