Sha256: bae6f4da4cc50d657390edd753c376cca0c86dc5662b8f3213364810b13789c7
Contents?: true
Size: 714 Bytes
Versions: 119
Compression:
Stored size: 714 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 MissingResourceException extends RuntimeException { private String _className; private String _key; public MissingResourceException(String s, String className, String key) { super(s); _className = className; _key = key; } public String getClassName() { return _className; } public String getKey() { return _key; } }
Version data entries
119 entries across 119 versions & 1 rubygems