Java tutorial
/* * Copyright (C) 2014 Sebastien Diot. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.blockwithme.util.client; import java.util.logging.LogRecord; import com.google.gwt.logging.client.ConsoleLogHandler; /** * @author monster * */ public class UtilConsoleLogHandler extends ConsoleLogHandler { public UtilConsoleLogHandler() { super(); setFormatter(new UtilLogFormatter()); } @Override public void publish(final LogRecord record) { try { super.publish(record); } catch (final/*UnsatisfiedLinkError*/Error e) { if (!e.getClass().getSimpleName().equals("UnsatisfiedLinkError")) { throw e; } // GWT Compiler issue; This class is instantiated at compile time, // (for whatever reason, by GIN), and at that time, // com.google.gwt.user.client.Timer is not available, causing a // UnsatisfiedLinkError. But if I catch it as a UnsatisfiedLinkError, // then it does not compile because UnsatisfiedLinkError does not // exist in GWT! Argh! } } }