mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-25 03:25:19 +00:00
19 lines
389 B
Swift
19 lines
389 B
Swift
//
|
|
// NoiseSecurityError.swift
|
|
// bitchat
|
|
//
|
|
// This is free and unencumbered software released into the public domain.
|
|
// For more information, see <https://unlicense.org>
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum NoiseSecurityError: Error {
|
|
case sessionExpired
|
|
case sessionExhausted
|
|
case messageTooLarge
|
|
case invalidPeerID
|
|
case rateLimitExceeded
|
|
case handshakeTimeout
|
|
}
|