Skip to content

Commit 673d4a7

Browse files
committed
Fixed incorrect error messages for addition() and subtraction()
Separated error message from Exception class and made it into a parameter
1 parent 3a69802 commit 673d4a7

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

matrix_operations.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66

77
class MatrixOperations:
88
class IncompatibleDimensionsError(Exception):
9+
def __init__(self, message: Optional[str] = None) -> None:
10+
self.message = message if message else "Incompatible dimensions"
11+
912
def __str__(self) -> str:
10-
return "Matrices are not compatible.\n" \
11-
"No. of Columns in Matrix 1 have to be the same as No. of Rows in Matrix 2."
13+
return self.message
1214

1315
@staticmethod
1416
def __get_dimensions(matrix_1: matrix, matrix_2: Optional[matrix] = None) -> \
@@ -44,7 +46,9 @@ def addition(matrix_1: matrix, matrix_2: matrix) -> matrix:
4446
compatible_dim: bool
4547
dim_1, dim_2, same_dim, compatible_dim = MatrixOperations.__get_dimensions(matrix_1, matrix_2)
4648
if not same_dim:
47-
raise MatrixOperations.IncompatibleDimensionsError
49+
raise MatrixOperations.IncompatibleDimensionsError("Matrices are not compatible.\n"
50+
"No. of Rows & Columns in Matrix 1 have to be the same "
51+
"as No. of Rows & Columns in Matrix 2.")
4852
sum_m: matrix = [[0 for cols in range(dim_1[1])] for rows in range(dim_1[0])]
4953
for i in range(0, dim_1[0]):
5054
for j in range(0, dim_1[1]):
@@ -60,7 +64,9 @@ def subtraction(matrix_1: matrix, matrix_2: matrix) -> matrix:
6064
compatible_dim: bool
6165
dim_1, dim_2, same_dim, compatible_dim = MatrixOperations.__get_dimensions(matrix_1, matrix_2)
6266
if not same_dim:
63-
raise MatrixOperations.IncompatibleDimensionsError
67+
raise MatrixOperations.IncompatibleDimensionsError("Matrices are not compatible.\n"
68+
"No. of Rows & Columns in Matrix 1 have to be the same "
69+
"as No. of Rows & Columns in Matrix 2.")
6470
difference_m: matrix = [[0 for cols in range(dim_1[1])] for rows in range(dim_1[0])]
6571
for i in range(0, dim_1[0]):
6672
for j in range(0, dim_1[1]):
@@ -76,7 +82,9 @@ def multiplication(matrix_1: matrix, matrix_2: matrix) -> matrix:
7682
compatible_dim: bool
7783
dim_1, dim_2, same_dim, compatible_dim = MatrixOperations.__get_dimensions(matrix_1, matrix_2)
7884
if not compatible_dim:
79-
raise MatrixOperations.IncompatibleDimensionsError
85+
raise MatrixOperations.IncompatibleDimensionsError("Matrices are not compatible.\n"
86+
"No. of Columns in Matrix 1 have to be the same as No. "
87+
"of Rows in Matrix 2.")
8088
product_m: matrix = [[0 for cols in range(dim_2[1])] for rows in range(dim_1[0])]
8189
for i in range(0, dim_1[0]):
8290
for j in range(0, dim_2[1]):

0 commit comments

Comments
 (0)