JSD-9634 钉钉用户同步
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.

26 lines
576 B

/*
* Copyright (C), 2018-2021
* Project: starter
* FileName: DingTalkRequestException
* Author: Louis
* Date: 2021/6/24 22:26
*/
package com.fr.plugin.xxxx.dingtalksyn.exceptions;
/**
* <Function Description><br>
* <DingTalkRequestException>
*
* @author fr.open
* @since 1.0.0
*/
public class DingTalkRequestException extends Exception {
private static final long serialVersionUID = -729781689637350516L;
public DingTalkRequestException() {
}
public DingTalkRequestException(String msg) {
super(msg);
}
}