Skip to content

424 Failed Dependency

WebDAV error where a request failed because a previous dependent request also failed.

WebDAV specific. Use this when a bulk request fails because an earlier step in the chain failed.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Failed Dependency', 424);
});