[Bugfix] Communications #7

Merged
javier merged 4 commits from bugfix/communications into main 2023-04-18 22:55:25 +00:00
2 changed files with 17 additions and 7 deletions
Showing only changes of commit 6277f95661 - Show all commits

View File

@ -0,0 +1,17 @@
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftLibs open source project
//
// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors
// Licensed under the EUPL 1.2 or later.
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftLibs project authors
//
//===----------------------------------------------------------------------===//
/// Errors generated out of the `MakeURLRequestUseCase` use case.
public enum MakeURLRequestError: Error {
/// An expected URL was not created.
case urlNotCreated
}

View File

@ -49,10 +49,3 @@ public struct MakeURLRequestUseCase {
} }
} }
// MARK: - Errors
enum MakeURLRequestError: Error {
case urlNotCreated
}