[Solved] ECE 325 Assignment 3- Exception Handling

$25

File Name: ECE_325_Assignment_3__Exception_Handling.zip
File Size: 376.8 KB

SKU: [Solved] ECE 325 Assignment 3- Exception Handling Category: Tag:
5/5 - (1 vote)

The exceptions should propagate the error to the main program which prints the diagnostics of the error. You must handle these errors using Java exceptions and the message should be printed by an exception handler in a catch clause.

These will be the exception test cases:

1 + (2 * 3; // syntax error: ) expected (let x 5) + x; // syntax error: = expected

(let x = 5) (let y = 6); // syntax error: operator expected

(let x = 5 let y = 6); // syntax error: ) expected

(ler x = 5) ^ (let y = 6); // runtime error: ler undefined (let x = 5) + y; // runtime error: y undefined

A Working Procedure Example

a

Expression Stack Pop & Return H
1 1 +
| 1 +|
/ <
2 1 + (let x = 1
| let x = 1|
| 1 +|
/ x
3 1 + (let x = 1)
| 1 + 1|
1(returned fromlet x = 1) x
4 1 + (let x = 1) + (let y = 2) + (1 + x * (1 + y
| 1 + y|
| 1 + x *|
| 1 + 1 + 2 + |
/(let y = 2 has already returned 2) x y
5 1 + (let x = 1) + (let y = 2) + (1 + x * (1 + y)
| 1 + x * 3|
| 1 + 1 + 2 +|
3(returned from1 + y) x y
6 1 + (let x = 1) + (let y = 2) + (1 + x * (1 + y)) (let x = y
| let x = y|
| 1 + 1 + 2 + 4 |
/(1 + x * 3 has already returned 4) x y
7 1 + (let x = 1) + (let y = 2) + (1 + x * (1 + y)) (let x = y) x
| 1 + 1 + 2 + 4 2 2 |
/(let x = y has already returned 2) x y

Em

=

=

=

=

=

=

=

=

=

=

8 1 + (let x = 1) + (let y = 2) + (1 + x * (1 + y)) (let x = y) x; <Empty> 4 x y

=

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] ECE 325 Assignment 3- Exception Handling[Solved] ECE 325 Assignment 3- Exception Handling
$25