admin
2021-12-28 2e1e666a8e39059194dabff7115cb8897ea19a85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.hanju.lib.library.okhttp.utils;
 
/**
 * Created by zhy on 15/12/14.
 */
public class Exceptions
{
    public static void illegalArgument(String msg, Object... params)
    {
        throw new IllegalArgumentException(String.format(msg, params));
    }
 
 
}