EmptyStackException.js 210 B

12345678
  1. import Exception from '../lang/Exception'
  2. export default class EmptyStackException extends Exception {
  3. constructor(message) {
  4. super(message)
  5. this.name = Object.keys({ EmptyStackException })[0]
  6. }
  7. }