Files
svc-api-x/v1/resources/err.cfc
2025-09-10 20:19:02 +03:00

10 lines
448 B
Plaintext

<cfcomponent extends="taffy.core.resource" taffy:uri="/error">
<cffunction name="get" hint="Имитация ошибки HTTP для тестирования">
<cfargument name="statusCode" type="string" hint="type:integer" default="200"/>
<cfargument name="statusText" type="string" hint="type:string" default=""/>
<cfreturn representationOf(arguments.statusText).withStatus(arguments.statusCode)/>
</cffunction>
</cfcomponent>