Question about JUCEApplication

When I create a plugin project, the only files created are plugineditor/processor, so I’m not sure I understand how I can override some of the methods in JUCEApplication since nothing thats been created seems to derive from this?

I’m working on a VST effect and I’d like to be able to properly initialize / shutdown, and override the unhandledexception method so i can log errors…

Any pointers? (no pun intended)

There’s no JuceApplication in a plugin project(*), so you can’t use the top level exception handler. It’s probably best if you don’t throw or need to handle exceptions in plugins.

(*) Unless you do a standalone application build of the plugin, but you mentioned doing a VST plugin.