15 lines
275 B
Swift
15 lines
275 B
Swift
//
|
|
// BlockchainError.swift
|
|
// Malinka
|
|
//
|
|
// Created by user on 28.12.2022.
|
|
// Copyright © 2022 NUT.Tech. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum BlockchainError: Error {
|
|
case lackOfResources(description: String)
|
|
case commonError(description: String)
|
|
}
|