8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
import Exception from './Exception'
|
|
|
|
export default class IndexOutOfBoundsException extends Exception {
|
|
constructor(message) {
|
|
super(message)
|
|
this.name = Object.keys({ IndexOutOfBoundsException })[0]
|
|
}
|
|
} |