/*
* @Copyright (c) Huawei Technologies Co., Ltd. 2024-2024. All rights reserved.
*/
package memorycache
public class MemoryCacheException <: Exception {
public init() {
super()
}
public init(msg: String) {
super(msg)
}
public func toString(): String {
return "MemoryCacheException: " + message
}
}