ElginException constructor

ElginException(
  1. int exception
)

Cria uma nova exceção ElginException com o exception informado.

O campo error será automaticamente preenchido.

Implementation

ElginException(this.exception) {
  error = ElginError(exception);
}