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