Java tutorial
//package com.java2s; import android.util.Log; public class Main { private static final String TAG = "ParseUtils"; private static String mCustomProxyClassName; private static void printNotMatchErrorMessage() { String errorMessage = "Please check your ProxyClassName,the " + mCustomProxyClassName + " is not match the rule."; Log.e(TAG, "printNotMatchErrorMessage: " + errorMessage); throw new IllegalArgumentException(errorMessage); } }