InvalidBooleanException

Summary

Represents an invalid Boolean exception.

Description

Represents an invalid Boolean exception.

Examples

Example of how this exception might be encountered
1
2
3
4
5
6
7
8
9
import System;
import System.Exceptions;
 
try {
    bool x = Boolean.fromStringOrThrow("abc");
}
catch(InvalidBooleanException e) {
    Console.error(e);
}

Methods

Share

HTML | BBCode | Direct Link