How to display error on specific template?

@PieterGoosen gave some good advice. Focus on that,

But if you really wan it, then you can set debug ON temporarily on your website this way.
In your wp-config.php use this instead.

if ( isset( $_GET['debug'] ) && 'debug' == $_GET['debug'] ) {
  define( 'WP_DEBUG', true );
}

Then access your website homepage/any page and add ?debug=debug at the end of URL.
For example if you have page www.example.com/about/ then use this link to enable debug.

http://www.example.com/about/?debug=debug