Uses of Class
com.beassolution.rule.exception.OperationException
Packages that use OperationException
Package
Description
-
Uses of OperationException in com.beassolution.rule.advice
Methods in com.beassolution.rule.advice that return OperationExceptionModifier and TypeMethodDescriptionstatic OperationException
GeneralAdvice.convertToOperationException
(Throwable throwable, org.springframework.http.HttpStatus status) Converts a Throwable to an OperationException with appropriate status.Methods in com.beassolution.rule.advice that return types with arguments of type OperationExceptionModifier and TypeMethodDescriptionstatic BaseResponseModel
<OperationException> GeneralAdvice.generateOperationMessage
(OperationException operationException) Generates a standardized error response model.GeneralAdvice.handleError
(Error error) Handles Error instances.GeneralAdvice.handleException
(Exception exception) Handles general exceptions.GeneralAdvice.handleHttpMessageConversionException
(org.springframework.http.converter.HttpMessageConversionException exception) Handles HTTP message conversion exceptions.GeneralAdvice.handleHttpRequestMethodNotSupportedException
(org.springframework.web.HttpRequestMethodNotSupportedException exception) Handles HTTP request method not supported exceptions.GeneralAdvice.handleMethodArgumentNotValidException
(org.springframework.web.bind.MethodArgumentNotValidException exception) Handles method argument not valid exceptions.GeneralAdvice.handleMongoDataIntegrityViolation
(org.springframework.data.mongodb.core.MongoDataIntegrityViolationException exception) Handles MongoDB data integrity violation exceptions.GeneralAdvice.handleNoHandlerFoundException
(org.springframework.web.servlet.NoHandlerFoundException exception) Handles no handler found exceptions.GeneralAdvice.handleOperationException
(OperationException exception) Handles OperationException instances.GeneralAdvice.handleThrowable
(Throwable throwable) Handles general throwable exceptions.Methods in com.beassolution.rule.advice with parameters of type OperationExceptionModifier and TypeMethodDescriptionstatic BaseResponseModel
<OperationException> GeneralAdvice.generateOperationMessage
(OperationException operationException) Generates a standardized error response model.GeneralAdvice.handleOperationException
(OperationException exception) Handles OperationException instances. -
Uses of OperationException in com.beassolution.rule.controller
Methods in com.beassolution.rule.controller that throw OperationExceptionModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<FunctionLibrary> FunctionLibraryController.create
(FunctionLibrary obj) Creates a new function library.org.springframework.http.ResponseEntity
<RuleHelper> RuleHelperController.create
(RuleHelper obj) Creates a new rule helper.org.springframework.http.ResponseEntity
<RuleLibrary> RuleLibraryController.create
(RuleLibrary obj) Creates a new rule library.org.springframework.http.ResponseEntity
<HttpResponse<org.springframework.http.HttpStatus>> Deletes a function library by its ID.org.springframework.http.ResponseEntity
<HttpResponse<org.springframework.http.HttpStatus>> Deletes a rule helper by its ID.org.springframework.http.ResponseEntity
<HttpResponse<org.springframework.http.HttpStatus>> Deletes a rule library by its ID.org.springframework.http.ResponseEntity
<FunctionLibrary> Retrieves a single function library by its ID.org.springframework.http.ResponseEntity
<org.springframework.data.domain.Page<FunctionLibrary>> Retrieves a paginated list of function libraries with optional filtering.org.springframework.http.ResponseEntity
<RuleHelper> Retrieves a single rule helper by its ID.org.springframework.http.ResponseEntity
<org.springframework.data.domain.Page<RuleHelper>> Retrieves a paginated list of rule helpers with optional filtering.org.springframework.http.ResponseEntity
<RuleLibrary> Retrieves a single rule library by its ID.org.springframework.http.ResponseEntity
<org.springframework.data.domain.Page<RuleLibrary>> Retrieves a paginated list of rule libraries with optional filtering.org.springframework.http.ResponseEntity
<FunctionLibrary> FunctionLibraryController.update
(FunctionLibrary obj) Updates an existing function library.org.springframework.http.ResponseEntity
<RuleHelper> RuleHelperController.update
(RuleHelper obj) Updates an existing rule helper.org.springframework.http.ResponseEntity
<RuleLibrary> RuleLibraryController.update
(RuleLibrary obj) Updates an existing rule library. -
Uses of OperationException in com.beassolution.rule.controller.base
Methods in com.beassolution.rule.controller.base that throw OperationExceptionModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<T> Creates a new entity.org.springframework.http.ResponseEntity
<HttpResponse<org.springframework.http.HttpStatus>> Deletes an entity by its ID.org.springframework.http.ResponseEntity
<T> Retrieves a single entity by its ID.org.springframework.http.ResponseEntity
<org.springframework.data.domain.Page<T>> Retrieves a paginated list of entities with optional filtering.org.springframework.http.ResponseEntity
<T> Updates an existing entity. -
Uses of OperationException in com.beassolution.rule.service.base
Methods in com.beassolution.rule.service.base that throw OperationExceptionModifier and TypeMethodDescriptionCreates a new entity.Creates a new entity.void
Deletes an entity by its unique identifier.void
Deletes an entity by its unique identifier.org.springframework.data.domain.Page
<T> Retrieves a paginated list of entities with optional filtering.org.springframework.data.domain.Page
<T> Retrieves a paginated list of entities with optional filtering.Updates an existing entity.Updates an existing entity.