Muhammad Ali Khojaye

Greenhorn
+ Follow
since Oct 03, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Muhammad Ali Khojaye

Ravaa Bal wrote:

This bit code is giving me the error "';' expected", and the statement inside the try catch block doesn't recognise that I'm trying to catch the exception that it wants caught. Not sure what I could be doing wrong...here's the full class in case that gives more of an idea:



Better if you use the same code format style.

Style 1

try
{
//code
}
catch(MidiUnavailableException e)
{

}

Style 2

try {
// your code
} catch(MidiUnavailableException e) {

}


Will make your code more readable with consistent formatting style.

Hope it helps.

14 years ago