how to handled exceptions & erros in ejb?
Answer / ss
The primary exceptions of ejb is EJBException and
RemoteException. Generaly those exceptions are handeled by
throws list. Other type of exceptions are handled by
try..catch block as like other java programs
| Is This Answer Correct ? | 4 Yes | 0 No |
How variables are declared?
What's a method in programming?
If we allocate the memory using 'new' & de-allocated using 'free' then what will happen?
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
What is the purpose of return statement?
what is the difference between ArrayList and Vector
19 Answers KPIT, Sasken, Satyam, Span Infotech, Wipro,
Is null a string in java?
What is variable explain?
Which collection is ordered in java?
Is it possible for a yielded thread to get chance for its execution again?
what is meta-Inf?
Define a package.