Sha256: 20a94e7d83989c338c252c150f1bd1423e5b57ccbe37cb9ed366e7f3ef16f9d9
Contents?: true
Size: 800 Bytes
Versions: 119
Compression:
Stored size: 800 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.OutputStream; public class FileOutputStream extends OutputStream { public FileOutputStream(String name) throws FileNotFoundException { } public FileOutputStream(File file) throws FileNotFoundException { } public void write(int arg0) throws IOException { throw new UnsupportedOperationException( "File operations not supported for J2ME build"); } }
Version data entries
119 entries across 119 versions & 1 rubygems