forked from AcaMate/AcaMate_iOS
17 lines
207 B
Swift
17 lines
207 B
Swift
//
|
|
// CustomError.swift
|
|
// AcaMate
|
|
//
|
|
// Created by TAnine on 3/14/25.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class ACA_ERROR: Error {
|
|
let message: String
|
|
|
|
init(_ msg: String) {
|
|
message = msg
|
|
}
|
|
}
|