Skip to content

Commit

Permalink
Revise AysAssignmentAlreadyAssignedException, AysAssignmentAlreadyAva…
Browse files Browse the repository at this point in the history
…ilableException, AysAssignmentAlreadyDoneException, AysAssignmentAlreadyInProgressException, AysAssignmentAlreadyReservedException and AysAssignmentNotExistByIdException
  • Loading branch information
Rapter1990 committed Jul 23, 2023
1 parent 206eda2 commit 2aefc95
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception thrown when a user assignment is assigned and attempting to perform an action that requires an assigned assignment.
*/
public class AysUserAssignmentAlreadyAssignedException extends AysAlreadyException {
public class AysAssignmentAlreadyAssignedException extends AysAlreadyException {

/**
* Unique identifier for serialization.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentAlreadyAssignedException extends AysAlreadyExcepti
*
* @param id the id of the assignment which is already assigned
*/
public AysUserAssignmentAlreadyAssignedException(String id) {
public AysAssignmentAlreadyAssignedException(String id) {
super("ASSIGNMENT IS ALREADY ASSIGNED! id:" + id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception thrown when a user assignment is available and attempting to perform an action that requires an assignment which is already available.
*/
public class AysUserAssignmentAlreadyAvailableException extends AysAlreadyException {
public class AysAssignmentAlreadyAvailableException extends AysAlreadyException {

/**
* Unique identifier for serialization.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentAlreadyAvailableException extends AysAlreadyExcept
*
* @param id the id of the assignment which is already available
*/
public AysUserAssignmentAlreadyAvailableException(String id) {
public AysAssignmentAlreadyAvailableException(String id) {
super("ASSIGNMENT IS ALREADY AVAILABLE! id:" + id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception thrown when a user assignment is done and attempting to perform an action that requires an assignment which is already done.
*/
public class AysUserAssignmentAlreadyDoneException extends AysAlreadyException {
public class AysAssignmentAlreadyDoneException extends AysAlreadyException {

/**
* Unique identifier for serialization.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentAlreadyDoneException extends AysAlreadyException {
*
* @param id the id of the assignment which is already done
*/
public AysUserAssignmentAlreadyDoneException(String id) {
public AysAssignmentAlreadyDoneException(String id) {
super("ASSIGNMENT IS ALREADY DONE! id:" + id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception thrown when a user assignment is in progress and attempting to perform an action that requires an assignment which is already in progress.
*/
public class AysUserAssignmentAlreadyInProgressException extends AysAlreadyException {
public class AysAssignmentAlreadyInProgressException extends AysAlreadyException {

/**
* Unique identifier for serialization.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentAlreadyInProgressException extends AysAlreadyExcep
*
* @param id the id of the assignment which is already in progress
*/
public AysUserAssignmentAlreadyInProgressException(String id) {
public AysAssignmentAlreadyInProgressException(String id) {
super("ASSIGNMENT IS ALREADY IN PROGRESS! id:" + id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception thrown when a user assignment is reserved and attempting to perform an action that requires an assignment which is already reserved.
*/
public class AysUserAssignmentAlreadyReservedException extends AysAlreadyException {
public class AysAssignmentAlreadyReservedException extends AysAlreadyException {

/**
* Unique identifier for serialization.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentAlreadyReservedException extends AysAlreadyExcepti
*
* @param id the id of the assignment which is already reserved
*/
public AysUserAssignmentAlreadyReservedException(String id) {
public AysAssignmentAlreadyReservedException(String id) {
super("ASSIGNMENT IS ALREADY RESERVED! id:" + id);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Exception to be thrown when a user assignment with a given ID does not exist.
*/
public class AysUserAssignmentNotExistByIdException extends AysNotExistException {
public class AysAssignmentNotExistByIdException extends AysNotExistException {

/**
* Unique serial version ID.
Expand All @@ -20,7 +20,7 @@ public class AysUserAssignmentNotExistByIdException extends AysNotExistException
*
* @param id the ID of the assignment that does not exist
*/
public AysUserAssignmentNotExistByIdException(String id) {
public AysAssignmentNotExistByIdException(String id) {
super("ASSIGNMENT NOT EXIST! id:" + id);
}

Expand Down

0 comments on commit 2aefc95

Please sign in to comment.