Hi,
I am curious if it is possible from a code stage to throw one of the defined Blue Prism exception types

Currently if a code stage throws any exception e.g.
```
throw new ArgumentException("My exception message here");
```
It comes up in Blue Prism as an Internal Exception
> Exception: Internal - Could not execute code stage because exception thrown....
What I'd like to do is throw a specific Blue Prism exception so my exception handling can deal with that exception in the proper way. Is this possible?
Thanks!