Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osiv2-postfach
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
osiv2-postfach
Merge requests
!5
Resolve "Senden von Nachrichten"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Senden von Nachrichten"
5-senden-von-nachrichten
into
main
Overview
0
Commits
3
Pipelines
2
Changes
3
Merged
Jan Zickermann
requested to merge
5-senden-von-nachrichten
into
main
4 months ago
Overview
0
Commits
3
Pipelines
2
Changes
3
Expand
Closes
#5 (closed)
0
0
Merge request reports
Viewing commit
0315fb99
Prev
Next
Show latest version
3 files
+
26
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
0315fb99
#5
send: Throw OsiPostfachException
· 0315fb99
Jan Zickermann
authored
4 months ago
src/main/java/de/ozgcloud/nachrichten/postfach/osiv2/OsiPostfachException.java
0 → 100644
+
9
−
0
Options
package
de.ozgcloud.nachrichten.postfach.osiv2
;
import
de.ozgcloud.common.errorhandling.TechnicalException
;
public
class
OsiPostfachException
extends
TechnicalException
{
public
OsiPostfachException
(
String
msg
,
Throwable
cause
)
{
super
(
msg
,
cause
);
}
}
Loading