-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAS date formats implementation (#86)
* Implemented sas date formats
- Loading branch information
1 parent
81c6608
commit 246ea55
Showing
140 changed files
with
30,235 additions
and
204 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
src/main/java/com/epam/parso/date/NotImplementedException.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,9 @@ | ||
package com.epam.parso.date; | ||
|
||
/** | ||
* Declared but not yet implemented formats throw this type of exception. | ||
* This exception is suppose to be caught internally to substitute | ||
* not implemented with on of fallback date format. | ||
*/ | ||
class NotImplementedException extends RuntimeException { | ||
} |
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.