| Home >> All >> org >> alicebot >> server >> core >> [ util Javadoc ] |
Source code: org/alicebot/server/core/util/UserError.java
1 // Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov. 2 // Jad home page: http://www.geocities.com/kpdus/jad.html 3 // Decompiler options: packimports(3) 4 5 package org.alicebot.server.core.util; 6 7 8 public class UserError extends Error 9 { 10 11 public UserError(String s) 12 { 13 super(s); 14 } 15 16 public UserError(Exception exception1) 17 { 18 super("Developer did not describe exception."); 19 exception = exception1; 20 } 21 22 public UserError(String s, Exception exception1) 23 { 24 super(s); 25 exception = exception1; 26 } 27 28 public Exception getException() 29 { 30 return exception; 31 } 32 33 private Exception exception; 34 }