If / Else Dilemna

i keep on getting error reports about else without matching if when i use:


if ( conditions ) {
//stuff;
}
else if (conditions) {
//stuff;
}
else {
//stuff;
}