FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rJava/src/java/NotAnArrayException.java at master · s-u/rJava · GitHub
s-u
/
rJava
Public
Notifications
You must be signed in to change notification settings
Fork
78
Star
242
Code
Issues
9
Pull requests
1
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
rJava
/
src
/
java
/
NotAnArrayException.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (11 loc) · 286 Bytes
Breadcrumbs
rJava
/
src
/
java
/
NotAnArrayException.java
Copy path
File metadata and controls
12 lines (11 loc) · 286 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
/**
* Exception indicating that an object is not a java array
*/
public
class
NotAnArrayException
extends
Exception
{
public
NotAnArrayException
(
Class
clazz
){
super
(
"not an array : "
+
clazz
.
getName
() ) ;
}
public
NotAnArrayException
(
String
message
){
super
(
message
) ;
}
}
Back
|
FazBrowse Home
|
New Git URL