Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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