Sha256: d84314014272dd1f238a21eb320a9de6f483d79c515b6c89daee170868d43225
Contents?: true
Size: 557 Bytes
Versions: 119
Compression:
Stored size: 557 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 java.io.IOException; public abstract class ObjectStreamException extends IOException { protected ObjectStreamException(String classname) { super(classname); } protected ObjectStreamException() { super(); } }
Version data entries
119 entries across 119 versions & 1 rubygems