Exception Output

Exceptions Output

How to catch and display exceptions

Example

try { throw "an error happened"; } catch ( any e ){ dump(e); } Go on with your code

[tag-Dump] shows the full exception structure without blocking your code. Dump includes all stack trace with it.

Example 2

<cfscript>
try {
  throw "an error happened again!";
}
catch ( any e ){
  echo(e);
}
</cfscript>
Go on with your code

Here we simply echo the exception. It shows the normal exception without blocking your code.

https://www.youtube.com/watch?v=vM-4R2A-ZsM

See also