Jump to content

[1.12.2] Catch and Try


PulseBeat_02

Recommended Posts

Hi, I am making a making a minecraft 1.12.2 mod.

 

In my mod, I would like to implement some code that would catch a forge error while loading (Such as mod duplicates, crash, etc).

I know that I can make this possible, however, I do not know what that error name is called. (For example, ArithmeticException e)

 

Can someone help me determine what this error name (for catch and try statements) is called?

Link to comment
Share on other sites

1) You probably shouldn't do this

2) Mostly because you can't do anything about the exceptions except display a message to the user (and then proceed to die anyway). Said message should be in the log file anyway and I'd rather teach people how to read their damn logs before I go about writing custom UI code to show them information that'll be in the log (along with more helpful information).

3) Buuut if you really really want to do this, all of the Forge mod loading exceptions are subclasses of EnhancedRuntimeException.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

You need to figure that out on your own. The part that goes inside the try is the code that may throw an exception. Presumably that would be the startup process of Minecraft.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.