This structure configures the interceptor service in your application.
//Interceptor SettingsinterceptorSettings = {throwOnInvalidStates = false,customInterceptionPoints = "onLogin,onWikiTranslation,onAppClose"};
This tells the interceptor service to throw an exception if the state announced for interception is not valid or does not exist. Defaults to false.
This key is a comma delimited list or an array of custom interception points you will be registering for custom announcements in your application. This is the way to provide an observer-observable pattern to your applications.
Info Please see the Interceptors section for more information.