Renderer/src/main/java/electrosphere/util/CodeUtils.java
austin ef0c2ee7ca
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
octree implementation
2024-08-22 18:03:48 -04:00

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();
}
}