Cody Burrito

Results 3 issues of Cody Burrito

Currently cognito-local returns custom errors defined in [errors.ts](https://github.com/jagregory/cognito-local/blob/master/src/errors.ts). This means you may have to write custom error handler code just for cognito-local which is less than ideal. I assume throwing...

```ts interface User { @Expose({ name: 'sub', toClassOnly: true }) id: string; @Expose({ name: 'first_name'}) firstName: string; } const obj = { sub: '1234', first_name: 'bob' }; const userInstance =...