ServiceNotFoundException.java 239 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package com.ydl.ydlcommon.modular;

/**
 * Created by haorui on 2020-03-02.
 * Des:
 */
public class ServiceNotFoundException extends RuntimeException {
    public ServiceNotFoundException(String message) {
        super(message);
    }
}