Sha256: d94eecf607efa94c7a9e5a9ebbb7a14680f1381b40bc41bec3c91f25544caf00
Contents?: true
Size: 546 Bytes
Versions: 119
Compression:
Stored size: 546 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 IllegalFormatCodePointException extends IllegalFormatException { private int c; public IllegalFormatCodePointException(int c) { this.c = c; } public int getCodePoint() { return c; } }
Version data entries
119 entries across 119 versions & 1 rubygems