From 418bbcf85a1a56b1b6e7f223f7f32db6c176a7b5 Mon Sep 17 00:00:00 2001 From: lmajano Date: Fri, 12 Jan 2024 09:54:40 +0000 Subject: [PATCH] Apply cfformat changes --- system/RestHandler.cfc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/RestHandler.cfc b/system/RestHandler.cfc index 85bc89847..cc9f0d932 100644 --- a/system/RestHandler.cfc +++ b/system/RestHandler.cfc @@ -176,7 +176,9 @@ component extends="EventHandler" { ){ // Try to discover exception, if not, hard error if ( - !isNull( arguments.prc.exception ) && ( isNull( arguments.exception ) || structIsEmpty( arguments.exception ) ) + !isNull( arguments.prc.exception ) && ( + isNull( arguments.exception ) || structIsEmpty( arguments.exception ) + ) ) { arguments.exception = arguments.prc.exception.getExceptionStruct(); }