Exception Output

Output Exceptions

How to catch and display exceptions

Example

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

Result

<cfdump> shows the full exception structure without blocking your code. Dump include all stack trace with it.

Example 2

<cfscript>
try {
  throw "an error happened";
}
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