1 package expo.modules.keepawake
2 
3 import expo.modules.kotlin.exception.CodedException
4 
5 internal class ActivateKeepAwakeException :
6   CodedException("Unable to activate keep awake")
7 
8 internal class DeactivateKeepAwakeException :
9   CodedException("Unable to deactivate keep awake. However, it probably is deactivated already")
10 
11 internal class MissingModuleException(moduleName: String) :
12   CodedException("Module '$moduleName' not found. Are you sure all modules are linked correctly?")
13