Skip to content

507 Insufficient Storage

WebDAV error indicating the server is out of disk space or storage quota.

WebDAV specific. Use this when the server physically runs out of disk space while trying to save a client’s uploaded file.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Insufficient Storage', 507);
});