Sha256: 42f769b1f9eb5d6e3722f0596246b4b7eb0ca64524acc6742956ac846e563998
Contents?: true
Size: 552 Bytes
Versions: 119
Compression:
Stored size: 552 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 UnknownFormatFlagsException extends IllegalFormatException { String _flags; public UnknownFormatFlagsException(String flags) { _flags = flags; } public String getFlags() { return _flags; } }
Version data entries
119 entries across 119 versions & 1 rubygems