OutOfRangeException

Summary

Represents an out-of-range exception.

Description

Represents an out-of-range exception.

Examples

Example of how this exception might be encountered
1
2
3
4
5
6
7
8
9
10
import System;
import System.Exceptions;
 
try {
    int x = 1;
    string s = x.toBase(1000);
}
catch(OutOfRangeException e) {
    Console.error(e);
}

Methods

Share

HTML | BBCode | Direct Link