-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incarnation#2 package is created with calculations using library
methods.
- Loading branch information
m_japa
authored and
m_japa
committed
Jul 29, 2016
1 parent
53edc92
commit 2b9faa8
Showing
6 changed files
with
76 additions
and
76 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
.../concordia/soen6441/src/CheersConfig.java → ...oen6441/incarnation1/CheersConfig_I1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/com/concordia/soen6441/incarnation1/CheersException_I1.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.concordia.soen6441.incarnation1; | ||
|
||
public class CheersException_I1 extends Exception | ||
{ | ||
private static final long serialVersionUID = -3594829237542405847L; | ||
|
||
public CheersException_I1() | ||
{ | ||
} | ||
|
||
public CheersException_I1(String message) | ||
{ | ||
super(message); | ||
} | ||
|
||
public CheersException_I1(String message, Throwable cause) | ||
{ | ||
super(message, cause); | ||
} | ||
|
||
public CheersException_I1(Throwable cause) | ||
{ | ||
super(cause); | ||
} | ||
|
||
public CheersException_I1(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) | ||
{ | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters