- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
773 B
Swift
26 lines
773 B
Swift
import ExpoModulesCore
|
|
|
|
internal final class FontFileNotFoundException: GenericException<String> {
|
|
override var reason: String {
|
|
"Font file '\(param)' doesn't exist"
|
|
}
|
|
}
|
|
|
|
internal final class FontCreationFailedException: GenericException<String> {
|
|
override var reason: String {
|
|
"Could not create font from loaded data for '\(param)'"
|
|
}
|
|
}
|
|
|
|
internal final class FontRegistrationFailedException: GenericException<CFError> {
|
|
override var reason: String {
|
|
"Registering '\(param)' font failed with message: '\(param.localizedDescription)'"
|
|
}
|
|
}
|
|
|
|
internal final class UnregisteringFontFailedException: GenericException<CFError> {
|
|
override var reason: String {
|
|
"Unregistering '\(param)' font failed with message: '\(param.localizedDescription)'"
|
|
}
|
|
}
|