You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
309 B
17 lines
309 B
package org.example.function;
|
|
|
|
/**
|
|
* @className: ThrowExceptionFunction
|
|
* @author: xiaomage
|
|
* @date: 2022/12/17
|
|
**/
|
|
public interface ThrowExceptionFunction {
|
|
|
|
/**
|
|
* 抛出异常信息
|
|
*
|
|
* @param message 异常信息
|
|
* @return void
|
|
**/
|
|
void throwMessage(String message);
|
|
}
|
|
|