Sha256: 9e95f4feb7c972096306756c23219117898c7ee2201c31a8b675736948801cf6
Contents?: true
Size: 567 Bytes
Versions: 119
Compression:
Stored size: 567 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 IllegalFormatPrecisionException extends IllegalFormatException { private int _precision; public IllegalFormatPrecisionException(int p) { _precision = p; } public int getPrecision() { return _precision; } }
Version data entries
119 entries across 119 versions & 1 rubygems