Sha256: 19c60d69972951fe0e859612c1e3fda89eb524760c1b88273f5c7249aced63e3
Contents?: true
Size: 682 Bytes
Versions: 119
Compression:
Stored size: 682 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 FormatFlagsConversionMismatchException extends IllegalFormatException { private String f; private char c; public FormatFlagsConversionMismatchException(String f, char c) { this.f = f; this.c = c; } public String getFlags() { return f; } public char getConversion() { return c; } }
Version data entries
119 entries across 119 versions & 1 rubygems