in sample/authui/src/app/app.component.ts [230:234]
private updateError(error: {code?: string, message?: string, retry?: any}) {
this.code = error && error.code;
this.message = error && error.message;
this.retry = error && error.retry;
}