## MessageError `MessageError` extracts an error from a model or a passed error and displays it using the `AlertBanner` component. | Param | Type | Default | Description | | --- | --- | --- | --- | | model | DS.Model | | An Ember data model that will be used to bind error statest to the internal `errors` property. | | errors | Array | | An array of error strings to show. | | errorMessage | String | | An Error string to display. | **Example** ```js ``` **See** - [Uses of MessageError](https://github.com/hashicorp/vault/search?l=Handlebars&q=MessageError) - [MessageError Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/message-error.js) ---