AVA EXCEPTION HANDLING  Complete the java code below according to the instructions given. Also use the test example below: Define the exceptions that are necessary to catch the possible errors that can occur in the class Matrix  • ExceptionWrongMatrixValues that is thrown in the method read() if the data on the String does not correspond to numeric values, or if the data are not consistent with the form of a matrix (e.g., the rows have different length);  • ExceptionWrongMatrixDimension that is thrown in the method read() if the data on the String do not correspond to the dimension of the matrix. The numbers are separated by space. A dot in a string means the next string of text is for the next row.   For example: Test Result String input="1 2 3 . 1 e 3 ."; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixValues String input="1 2 3 . 1 2 3 4 5 ."; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixValues String input="12312345"; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixDimension String input="1 2 . 3 4 ."; Matrix m = new Matrix(); m.read(input); 1 2 3 Incomplete code: public class Matrix{     private int matrix[][];          public Matrix(){}          public Matrix(int row, int column){         matrix = new int[row][column];     }          //your methods here }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

JAVA EXCEPTION HANDLING 
Complete the java code below according to the instructions given. Also use the test example below:


Define the exceptions that are necessary to catch the possible errors that can occur in the class Matrix 

• ExceptionWrongMatrixValues that is thrown in the method read() if the data on the String does not correspond to numeric values, or if the data are not consistent with the form of a matrix (e.g., the rows have different length); 

• ExceptionWrongMatrixDimension that is thrown in the method read() if the data on the String do not correspond to the dimension of the matrix.

The numbers are separated by space. A dot in a string means the next string of text is for the next row.

 

For example:

Test Result
String input="1 2 3 . 1 e 3 ."; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixValues
String input="1 2 3 . 1 2 3 4 5 ."; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixValues
String input="12312345"; Matrix m = new Matrix(); m.read(input); ExceptionWrongMatrixDimension
String input="1 2 . 3 4 ."; Matrix m = new Matrix(); m.read(input); 1 2 3

Incomplete code:

public class Matrix{
    private int matrix[][];
    
    public Matrix(){}
    
    public Matrix(int row, int column){
        matrix = new int[row][column];
    }
    
    //your methods here
}

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY