Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-14 Thread Sean Carrick
Michael, I know what you're saying. I had changed the JDK for the project to JDK19, but for some reason it didn't take...No worries, I don't mind developing in 11 and have been practically since it came out... -SC On 2/14/23 1:12 AM, Michael Bien wrote: this sounds like your project was stil

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Michael Bien
this sounds like your project was still configured to use JDK 11 while you tried to bump the language level (?). JDK version has to be >= language level, which is just a compiler setting (e.g --release=17 won't work on JDK 11 since it doesn't have the API and the compiler for that). best reg

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Sean Carrick
Scott, I didn't really configure it...I just set the project's Java Platform to JDK 19, then set the target source to 17. When I compiled it, the compiler said, "source target 17 is not supported" (or some such thing...I've slept since then 😉). So, I reduced the target source to 16 with the s

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Scott Palmer
That's strange. How did you configure the JDK for your project? On Mon, Feb 13, 2023 at 7:52 AM Sean Carrick wrote: > Hey, Ernie! I don't mind at all. > > I'm using JDK 11 now. I tried using JDK 19, but it didn't work…the > compiler kept stating that source level XX is not supported for every >

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-13 Thread Sean Carrick
Hey, Ernie! I don't mind at all. I'm using JDK 11 now. I tried using JDK 19, but it didn't work…the compiler kept stating that source level XX is not supported for every version from 19 down to 11, so I switched back to 11. -SC On Sun, Feb 12, 2023, 23:30 Ernie Rael wrote: > On 23/02/10 8:38 A

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-12 Thread Ernie Rael
On 23/02/10 8:38 AM, Sean Carrick wrote: Hey All! I am working on an NBP application and am wondering how I can create a custom "Submit Bug Report" action when using the ErrorManager or Exceptions APIs. Hey Sean, Do you mind saying what JRE your NBP app(s) run on? -ernie --

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-10 Thread Sean Carrick
Patrik, Thank you very much! That is perfect! My Google search game must need some work, because that link did not come up in my searches at all. I truly appreciate your assistance on this question. -Sean C. On 2/10/23 11:16 AM, Patrik Karlström wrote: Might this help? https://netbeans.apa

Re: How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-10 Thread Patrik Karlström
Might this help? https://netbeans.apache.org/wiki/DevFaqCustomizingUnexpectedExceptionDialog.html Den fre 10 feb. 2023 17:39Sean Carrick skrev: > Hey All! > > I am working on an NBP application and am wondering how I can create a > custom "Submit Bug Report" action when using the ErrorManager o

How To Add a Custom Bug Report Feature to ErrorManager or Exceptions

2023-02-10 Thread Sean Carrick
Hey All! I am working on an NBP application and am wondering how I can create a custom "Submit Bug Report" action when using the ErrorManager or Exceptions APIs. Basically, I moved all of my projects from GitHub to GitLab because of a certain feature offered by the latter: Service Desk. This