thrownewIllegalArgumentException("El ID del registro debe ser válido y mayor que cero.");
}
try{
ModelUzyTCatalogosGeneralesentity=daoUzyTCatalogosGenerales.findById(id).orElseThrow(()->newResourceNotFoundException("Registro no encontrado con ID: "+id));
if(entity!=null){
daoUzyTCatalogosGenerales.delete(entity);
returntrue;
}
returnfalse;
}catch(ResourceNotFoundExceptionex){
throwex;
}catch(Exceptionex){
thrownewRuntimeException("Error al eliminar el registro: "+ex.getMessage());