Skip to content

508 Loop Detected

WebDAV error. The server detected an infinite loop while processing the request.

WebDAV specific. Use this to prevent your server from getting stuck in an infinite loop while trying to traverse heavily linked directories.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Loop Detected', 508);
});