Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
20 lines
510 B
Java
20 lines
510 B
Java
package electrosphere.util;
|
|
|
|
/**
|
|
* Utilities for making devving faster
|
|
*/
|
|
public class CodeUtils {
|
|
|
|
/**
|
|
* Used as placeholder when haven't implemented error handling yet
|
|
* @param e The exception
|
|
* @param explanation Any kind of explanation string. Ideally explains what the case is
|
|
*/
|
|
public static void todo(Exception e, String explanation){
|
|
System.out.println("TODO: handle exception");
|
|
System.out.println(explanation);
|
|
e.printStackTrace();
|
|
}
|
|
|
|
}
|