forked from sakaiproject/sakai
-
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.
SAK-42763 Bubble attachment exception in mailsender (sakaiproject#7706)
- Loading branch information
1 parent
9079644
commit 301c2de
Showing
6 changed files
with
289 additions
and
364 deletions.
There are no files selected for viewing
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
36 changes: 36 additions & 0 deletions
36
kernel/api/src/main/java/org/sakaiproject/email/api/AttachmentSizeException.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,36 @@ | ||
/********************************************************************************** | ||
* Copyright 2008 Sakai Foundation | ||
* | ||
* Licensed under the Educational Community License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.opensource.org/licenses/ECL-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
**********************************************************************************/ | ||
package org.sakaiproject.email.api; | ||
|
||
import lombok.Getter; | ||
|
||
public class AttachmentSizeException extends Exception { | ||
|
||
/** | ||
* Default serial version ID. | ||
*/ | ||
private static final long serialVersionUID = 1L; | ||
|
||
@Getter | ||
private long attemptedSize = 0L; | ||
|
||
public AttachmentSizeException(String message, long attemptedSize) { | ||
|
||
super(message); | ||
this.attemptedSize = attemptedSize; | ||
} | ||
} |
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
Oops, something went wrong.