Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Lances-curve-kata
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
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clément DUVIVIER
Lances-curve-kata
Merge requests
!1
[KATA] lances curve
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
[KATA] lances curve
master
into
main
Overview
0
Commits
1
Pipelines
0
Changes
9
Merged
[KATA] lances curve
Clément DUVIVIER
requested to merge
master
into
main
May 16, 2022
Overview
0
Commits
1
Pipelines
0
Changes
9
0
0
Merge request reports
Viewing commit
7db826c0
Show latest version
9 files
+
366
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
7db826c0
[KATA] lances curve
· 7db826c0
Clément DUVIVIER
authored
May 16, 2022
src/main/exception/DateOrderException.java
0 → 100644
+
14
−
0
View file @ 7db826c0
Edit in single-file editor
Open in Web IDE
package
main.exception
;
public
class
DateOrderException
extends
RuntimeException
{
public
DateOrderException
()
{
}
public
DateOrderException
(
String
message
)
{
super
(
message
);
}
public
DateOrderException
(
String
message
,
Throwable
cause
)
{
super
(
message
,
cause
);
}
}
Loading