10 lines
416 B
Plaintext
10 lines
416 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> |