Sha256: 763835d6f45edb435b89be3b4963cddd05190a0cdc3369882f36f035095f5654
Contents?: true
Size: 554 Bytes
Versions: 119
Compression:
Stored size: 554 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 IllegalFormatFlagsException extends IllegalFormatException { private String _flags; public IllegalFormatFlagsException(String f) { _flags = f; } public String getFlags() { return _flags; } }
Version data entries
119 entries across 119 versions & 1 rubygems