All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.life.lab.leisure.common.feign.exception.CommonFeginException Maven / Gradle / Ivy

There is a newer version: 0.0.12.RELEASE
Show newest version
package com.github.life.lab.leisure.common.feign.exception;

import com.github.life.lab.leisure.common.exception.ExtensionException;
import com.github.life.lab.leisure.common.exception.HttpStatus;

public class CommonFeginException extends ExtensionException {

    public CommonFeginException(Long code, String message) {
        super(HttpStatus.SERVICE_UNAVAILABLE.value(), code, message, null, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy