ing
This commit is contained in:
parent
964ca725df
commit
481498bd26
|
@ -1,7 +1,8 @@
|
|||
package com.loafle.overflow.core.exception;
|
||||
|
||||
public class OverflowException extends Exception {
|
||||
public OverflowException(String message){ super(message); }
|
||||
private static final long serialVersionUID = -2737018677113628699L;
|
||||
public OverflowException(String message){ super(message); }
|
||||
public OverflowException(String message, Throwable throwable) {
|
||||
super(message, throwable);
|
||||
}
|
||||
|
|
|
@ -2,11 +2,8 @@ package com.loafle.overflow.service.central.history;
|
|||
|
||||
import com.loafle.overflow.core.annotation.WebappAPI;
|
||||
import com.loafle.overflow.core.model.PageParams;
|
||||
import com.loafle.overflow.model.domain.Domain;
|
||||
import com.loafle.overflow.model.history.History;
|
||||
|
||||
import com.loafle.overflow.model.meta.MetaHistoryType;
|
||||
import com.loafle.overflow.model.probe.Probe;
|
||||
import org.springframework.data.domain.Page;
|
||||
|
||||
public interface HistoryService {
|
||||
|
|
|
@ -4,7 +4,6 @@ import java.util.List;
|
|||
|
||||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.core.model.PageParams;
|
||||
import com.loafle.overflow.model.domain.Domain;
|
||||
import com.loafle.overflow.model.infra.Infra;
|
||||
import com.loafle.overflow.model.probe.Probe;
|
||||
import com.loafle.overflow.model.target.Target;
|
||||
|
|
|
@ -3,7 +3,6 @@ package com.loafle.overflow.service.central.noauthprobe;
|
|||
import com.loafle.overflow.core.annotation.ProbeAPI;
|
||||
import com.loafle.overflow.core.annotation.WebappAPI;
|
||||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.model.domain.Domain;
|
||||
import com.loafle.overflow.model.noauthprobe.NoAuthProbe;
|
||||
|
||||
import java.util.List;
|
||||
|
|
Loading…
Reference in New Issue
Block a user