1 package host.exp.exponent.notifications.exceptions
2 
3 import expo.modules.core.errors.CodedException
4 
5 class UnableToScheduleException : CodedException("Probably there won't be any time in the future when notification can be scheduled") {
getCodenull6   override fun getCode(): String {
7     return "E_NOTIFICATION_CANNOT_BE_SCHEDULED"
8   }
9 }
10