├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── missing-error-domain-request.md ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── WhatTheErrorCode.xcscheme ├── Assets ├── app_example.jpg └── rocketsim_developer_utilities.jpg ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── WhatTheErrorCode │ ├── WhatTheErrorCode.swift │ ├── WhatTheErrorCodeInputFactory.swift │ ├── WhatTheErrorCodeInputView.swift │ └── errors.json ├── Tests └── WhatTheErrorCodeTests │ └── WhatTheErrorCodeTests.swift └── WhatTheErrorCodeExample ├── WhatTheErrorCodeExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── WhatTheErrorCodeExample ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── WhatTheErrorCodeExample.entitlements └── WhatTheErrorCodeExampleApp.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [AvdLee] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-error-domain-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/.github/ISSUE_TEMPLATE/missing-error-domain-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/WhatTheErrorCode.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/WhatTheErrorCode.xcscheme -------------------------------------------------------------------------------- /Assets/app_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Assets/app_example.jpg -------------------------------------------------------------------------------- /Assets/rocketsim_developer_utilities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Assets/rocketsim_developer_utilities.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/README.md -------------------------------------------------------------------------------- /Sources/WhatTheErrorCode/WhatTheErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Sources/WhatTheErrorCode/WhatTheErrorCode.swift -------------------------------------------------------------------------------- /Sources/WhatTheErrorCode/WhatTheErrorCodeInputFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Sources/WhatTheErrorCode/WhatTheErrorCodeInputFactory.swift -------------------------------------------------------------------------------- /Sources/WhatTheErrorCode/WhatTheErrorCodeInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Sources/WhatTheErrorCode/WhatTheErrorCodeInputView.swift -------------------------------------------------------------------------------- /Sources/WhatTheErrorCode/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Sources/WhatTheErrorCode/errors.json -------------------------------------------------------------------------------- /Tests/WhatTheErrorCodeTests/WhatTheErrorCodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/Tests/WhatTheErrorCodeTests/WhatTheErrorCodeTests.swift -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/WhatTheErrorCodeExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/WhatTheErrorCodeExample.entitlements -------------------------------------------------------------------------------- /WhatTheErrorCodeExample/WhatTheErrorCodeExample/WhatTheErrorCodeExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/WhatTheErrorCode/HEAD/WhatTheErrorCodeExample/WhatTheErrorCodeExample/WhatTheErrorCodeExampleApp.swift --------------------------------------------------------------------------------