mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 04:20:07 +02:00
14 lines
236 B
Swift
14 lines
236 B
Swift
//
|
|
// Errors.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 06/02/2022.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol AlertableError {
|
|
func getErrorMessageKey() -> String
|
|
}
|