Sha256: 29f7a4cb07f6cb900663f09969b5ea39a509ee32a42d3c1f60dd475760e7555f
Contents?: true
Size: 558 Bytes
Versions: 119
Compression:
Stored size: 558 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.util; public class UnknownFormatConversionException extends IllegalFormatException { String _conv; public UnknownFormatConversionException(String s) { _conv = s; } public String getConversion() { return _conv; } }
Version data entries
119 entries across 119 versions & 1 rubygems