添加runner ,启动时发送获取日航班计划的消息

This commit is contained in:
zhouxiunai
2018-11-28 16:22:33 +08:00
parent 047ae94f64
commit 7fb816ddf8
14 changed files with 477 additions and 36 deletions
@@ -0,0 +1,17 @@
package com.gzzn.omms.msgexchangeapi.exception;
public class ExchangeServiceException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ExchangeServiceException(String message)
{
super(message);
}
public ExchangeServiceException(String message,Throwable cause)
{
super(message,cause);
}
}