Uses of Class
org.goplanit.utils.exceptions.PlanItRunTimeException
-
Packages that use PlanItRunTimeException Package Description org.goplanit.gtfs.entity org.goplanit.utils.exceptions General wrappers for exceptions thrown during program execution -
-
Uses of PlanItRunTimeException in org.goplanit.gtfs.entity
Methods in org.goplanit.gtfs.entity that throw PlanItRunTimeException Modifier and Type Method Description static DayOfWeek
GtfsCalendar. asDayOfWeek(GtfsKeyType gtfsKeyTypeWeekDay)
Convert GtfsKeyType to a Java DayOfWeek (if possible)static GtfsKeyType
GtfsCalendar. asGtfsKeyType(DayOfWeek dayOfWeek)
Convert Java DayOfWeek to GTFSKeyType (if possible) -
Uses of PlanItRunTimeException in org.goplanit.utils.exceptions
Methods in org.goplanit.utils.exceptions that throw PlanItRunTimeException Modifier and Type Method Description static void
PlanItRunTimeException. throwIf(boolean condition, String message, Object... objectArgs)
Throw a planitException if condition is metstatic void
PlanItRunTimeException. throwIfNull(Object object, String message)
Throw a planitException if object is nullstatic void
PlanItRunTimeException. throwIfNull(Object object, String message, Object... objectArgs)
Throw a PLANitException if object is nullstatic <T> void
PlanItRunTimeException. throwIfNullOrEmpty(Collection<T> collection, String message, Object... objectArgs)
Throw a PLANitRunTimeException if collection is null or empty
-