Skip to content

Commit

Permalink
Changed exceptions directory location
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoper02 committed Jun 9, 2024
1 parent a9bcad9 commit d34ef81
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Moq;
using Moq.EntityFrameworkCore;
using ReasnAPI.Exceptions;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Services;
using ReasnAPI.Services.Exceptions;

namespace ReasnAPI.Tests.Services;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Moq;
using Moq.EntityFrameworkCore;
using ReasnAPI.Exceptions;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Models.Enums;
using ReasnAPI.Services;
using ReasnAPI.Services.Exceptions;

namespace ReasnAPI.Tests.Services;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Moq;
using Moq.EntityFrameworkCore;
using ReasnAPI.Exceptions;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Models.Enums;
using ReasnAPI.Services;
using ReasnAPI.Services.Exceptions;

namespace ReasnAPI.Tests.Services;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Moq;
using Moq.EntityFrameworkCore;
using ReasnAPI.Exceptions;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Models.Enums;
using ReasnAPI.Services;
using ReasnAPI.Services.Exceptions;

namespace ReasnAPI.Tests.Services;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ReasnAPI.Services.Exceptions;
namespace ReasnAPI.Exceptions;

public class BadRequestException : Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ReasnAPI.Services.Exceptions;
namespace ReasnAPI.Exceptions;

public class NotFoundException : Exception
{
Expand Down
2 changes: 1 addition & 1 deletion Server/ReasnAPI/ReasnAPI/Services/AddressService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ReasnAPI.Exceptions;
using ReasnAPI.Mappers;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Services.Exceptions;
using System.Linq.Expressions;

namespace ReasnAPI.Services;
Expand Down
2 changes: 1 addition & 1 deletion Server/ReasnAPI/ReasnAPI/Services/CommentService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ReasnAPI.Exceptions;
using ReasnAPI.Mappers;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Services.Exceptions;
using System.Linq.Expressions;

namespace ReasnAPI.Services;
Expand Down
2 changes: 1 addition & 1 deletion Server/ReasnAPI/ReasnAPI/Services/ParticipantService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ReasnAPI.Exceptions;
using ReasnAPI.Mappers;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Services.Exceptions;
using System.Linq.Expressions;

namespace ReasnAPI.Services;
Expand Down
2 changes: 1 addition & 1 deletion Server/ReasnAPI/ReasnAPI/Services/UserService.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.EntityFrameworkCore;
using ReasnAPI.Exceptions;
using ReasnAPI.Mappers;
using ReasnAPI.Models.Database;
using ReasnAPI.Models.DTOs;
using ReasnAPI.Services.Exceptions;
using System.Linq.Expressions;
using System.Transactions;

Expand Down

0 comments on commit d34ef81

Please sign in to comment.