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

fun.bigtable.kraken.web.ErrorPageAdvice Maven / Gradle / Ivy

There is a newer version: 2.0.9.1
Show newest version
package fun.bigtable.kraken.web;


import fun.bigtable.kraken.bean.Result;
import fun.bigtable.kraken.exception.Type;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import org.springframework.web.servlet.NoHandlerFoundException;

@RestControllerAdvice
@ResponseBody
public class ErrorPageAdvice {


    @ExceptionHandler(NoHandlerFoundException.class)
    public Result result(){
        return Result.fail(Type.FAIL_INFO,"url not found");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy