Skip to main content

exception handling

Certain errors within the Dream/Psychic ecosystem are automatically recognized by psychic, and handled with intuitive response codes automatically for you:

castParam

In a controller, calling this.castParam with an invalid param passed will raise an exception which will cause Psychic to automatically raise a 400 error response, yielding an object with errors. In the following code, the call to castParam will raise a 400 unless the param for id is both passed, and a valid uuid.

class PostsController extends PsychicController {
public async show() {
const post = await this.currentUser
.associationQuery('posts')
.find(this.castParam('id', 'uuid'))
}
}

paramsFor

Similar to castParam, paramsFor will raise a 400 exception if any of the params provided matching one of the model attributes is invalid.

class PostsController extends PsychicController {
public async create() {
const post = await this.currentUser.createAssociation(
'posts',
this.paramsFor(Post),
)
}
}

failable lookups

Certain methods in dream will cause a RecordNotFound exception to be thrown. If this exception is unhandled by your application code, it will automatically cause Psychic to raise a 404.

class PostsController extends PsychicController {
public async update() {
const post = await this.currentUser
.associationQuery('posts')
.findOrFail(this.castParam('id', 'bigint'))
// this will raise a 404 if no record is found
}
}

There are many failable lookup methods within dream, and taking advantage of them in your controllers can often save you an annoying manual step. Here are the other failable lookup methods that will case a 404 to be thrown:

validation failures

Setting up validations on your models will automatically cause 422 errors to be thrown if any of the validations fails.