Sha256: 427f7c42f9f593c09b4f34ff5f2931d8e938de101256b3a73cdd04fe6569346c
Contents?: true
Size: 807 Bytes
Versions: 119
Compression:
Stored size: 807 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2005 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.io; import j2me.lang.UnsupportedOperationException; import java.io.IOException; import java.io.InputStream; public class FileInputStream extends InputStream { public FileInputStream(String name) throws FileNotFoundException { } public FileInputStream(File file) throws FileNotFoundException { } public int read() throws IOException { throw new UnsupportedOperationException( "File operations not supported for J2ME build"); } }
Version data entries
119 entries across 119 versions & 1 rubygems