What is the purpose of implementing MIDletStateChangeException in code?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the purpose of implementing MIDletStateChangeException in code?
Rating:
The application manager calls for start, pause, and destroy methods of a MIDlet life cycle to start, stop, and terminate a MIDlet. Sometimes an application manager terminates a MIDlet in between. For example, a MIDlet is saving persistent data and a call to the destroyApp() method is made by the application manager. This can cause corruption of data.
To overcome this type of situation, MIDletStateChangeException is implemented in code. It is used to reject the application manager's request to start or terminate a MIDlet.
Rating:
Was this information helpful?
Other articles
- What is the setCurrent() method?
- What is the List class?
- What is the pauseApp() method?
- What is the Calendar class?
- What is the setRecord() method?