-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3d3fd6
commit be577bd
Showing
16 changed files
with
59 additions
and
113 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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package hex.core; | ||
|
||
import hex.error.PrivateConstructorException; | ||
using hex.error.Error; | ||
|
||
/** | ||
* ... | ||
|
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,46 @@ | ||
package hex.error; | ||
|
||
import haxe.PosInfos; | ||
using tink.CoreApi; | ||
|
||
@IgnoreCover | ||
class IllegalArgumentException extends Error | ||
{ | ||
public function new ( message : String, ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class IllegalStateException extends Error | ||
{ | ||
public function new ( message : String, ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class NoSuchElementException extends Error | ||
{ | ||
public function new ( message : String, ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class NullPointerException extends Error | ||
{ | ||
public function new ( message : String, ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class PrivateConstructorException extends Error | ||
{ | ||
public function new ( ?message : String = "This class can't be instantiated.", ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class UnsupportedOperationException extends Error | ||
{ | ||
public function new ( message : String, ?posInfos : PosInfos ) super( code, message, pos ); | ||
} | ||
|
||
@IgnoreCover | ||
class VirtualMethodException extends Error | ||
{ | ||
public function new ( ?message : String = 'this method must be overridden', ?posInfos : PosInfos ) super( code, message, pos ); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package hex.util; | ||
|
||
import hex.error.PrivateConstructorException; | ||
using hex.error.Error; | ||
|
||
/** | ||
* ... | ||
|
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
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