Posted January 1, 20196 yr 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?
January 1, 20196 yr 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.
January 1, 20196 yr Author However, I have another problem. What would I put in the "try" section if the user is going to hit play to run minecraft forge?
January 1, 20196 yr 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.
January 1, 20196 yr Author So is the startup class. GradleStartCommon.java If so, I would run this in my try loop right? Unless if I am wrong that the startup class file for forge is not GradleStartCommon.
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.