Package org.wildstang.framework
Class CoreUtils
- java.lang.Object
-
- org.wildstang.framework.CoreUtils
-
public class CoreUtils extends java.lang.Object
Contains utility functions used across the framework.
-
-
Constructor Summary
Constructors Constructor Description CoreUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
checkNotNull(java.lang.Object p_param, java.lang.String p_message)
Throws a NullPointerException if p_param is null.
-
-
-
Method Detail
-
checkNotNull
public static void checkNotNull(java.lang.Object p_param, java.lang.String p_message)
Throws a NullPointerException if p_param is null.- Parameters:
p_param
- Object to check if null.p_message
- Message to use in exception.- Throws:
java.lang.NullPointerException
- If p_param is null.
-
-