| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/s-u/rJava/master/src/java/ObjectArrayException.java | [Back] [Original] |
/**
* Generated when one tries to access an array of primitive
* values as an array of Objects
*/
public class ObjectArrayException extends Exception{
public ObjectArrayException(String type){
super( "array is of primitive type : " + type ) ;
}
}
| Web Proxy Viewer | New URL | Original Page |